nur/flake.nix

23 lines
673 B
Nix
Raw Normal View History

2021-06-25 00:44:54 +00:00
{
description = "My personal NUR repository";
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
{
2023-06-12 04:23:10 +00:00
legacyPackages = forAllSystems (system: import ./default.nix {
2021-06-25 00:44:54 +00:00
pkgs = import nixpkgs { inherit system; };
});
2023-06-12 04:23:10 +00:00
packages = forAllSystems (system: nixpkgs.lib.filterAttrs (_: v: nixpkgs.lib.isDerivation v) self.legacyPackages.${system});
2021-06-25 00:44:54 +00:00
};
}