1
0
Fork 0
nur/flake.nix

20 lines
533 B
Nix
Raw Permalink Normal View History

2021-06-25 00:44:54 +00:00
{
description = "jolheiser personal NUR repository";
2021-06-25 00:44:54 +00:00
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs = { self, nixpkgs }:
let
systems = [
"x86_64-linux"
"i686-linux"
"x86_64-darwin"
"aarch64-linux"
"armv6l-linux"
"armv7l-linux"
];
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
in {
packages = forAllSystems (system:
import ./default.nix { pkgs = import nixpkgs { inherit system; }; });
2021-06-25 00:44:54 +00:00
};
}