Let flake run under all systems

This commit is contained in:
Skyler Grey 2022-05-22 21:00:40 +01:00
parent eaf2fa2e24
commit b4197e9b95
No known key found for this signature in database
GPG Key ID: 24D31D3B1B986F33

View File

@ -4,11 +4,14 @@
outputs = { self, nixpkgs }: let outputs = { self, nixpkgs }: let
system = "x86_64-linux"; system = "x86_64-linux";
forAllSystems = f: nixpkgs.lib.genAttrs nixpkgs.lib.systems.supported.hydra (system: f system);
in rec {
packages = forAllSystems (system: let
pkgs = import nixpkgs { pkgs = import nixpkgs {
inherit system; inherit system;
}; };
in rec { in {
packages."${system}".pridefetch = pkgs.stdenv.mkDerivation { pridefetch = pkgs.stdenv.mkDerivation {
name = "pridefetch"; name = "pridefetch";
buildInputs = [ buildInputs = [
(pkgs.python39.withPackages (pythonPackages: with pythonPackages; [ (pkgs.python39.withPackages (pythonPackages: with pythonPackages; [
@ -23,7 +26,8 @@
chmod +x $out/bin/pridefetch chmod +x $out/bin/pridefetch
''; '';
}; };
});
defaultPackage."${system}" = packages."${system}".pridefetch; defaultPackage = forAllSystems (system: self.packages.${system}.pridefetch);
}; };
} }