mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
only publish x86_64-linux packages when appropriate
This commit is contained in:
parent
6d68d9181b
commit
b98549f36a
1 changed files with 5 additions and 2 deletions
|
@ -36,12 +36,15 @@
|
||||||
packages = self.lib.forAllSystems (system:
|
packages = self.lib.forAllSystems (system:
|
||||||
with nixpkgs.legacyPackages.${system};
|
with nixpkgs.legacyPackages.${system};
|
||||||
{
|
{
|
||||||
binaryninja = callPackage ./pkgs/binary-ninja-personal { };
|
|
||||||
commander-x16 = callPackage ./pkgs/commander-x16 { };
|
commander-x16 = callPackage ./pkgs/commander-x16 { };
|
||||||
gef = callPackage ./pkgs/gef { };
|
gef = callPackage ./pkgs/gef { };
|
||||||
packettracer = callPackage ./pkgs/packettracer { };
|
|
||||||
weevely = callPackage ./pkgs/weevely { };
|
weevely = callPackage ./pkgs/weevely { };
|
||||||
}
|
}
|
||||||
|
// (if system != "x86_64-linux" then { } else
|
||||||
|
{
|
||||||
|
binaryninja = callPackage ./pkgs/binary-ninja-personal { };
|
||||||
|
packettracer = callPackage ./pkgs/packettracer { };
|
||||||
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
apps = self.lib.forAllSystems (system:
|
apps = self.lib.forAllSystems (system:
|
||||||
|
|
Loading…
Reference in a new issue