build-static
-> buildStatic
in Nix's flake
This commit is contained in:
parent
39de73550d
commit
f6ed1a96b3
1 changed files with 2 additions and 2 deletions
|
@ -228,7 +228,7 @@
|
||||||
# Binary package for various platforms.
|
# Binary package for various platforms.
|
||||||
build = nixpkgs.lib.genAttrs systems (system: self.packages.${system}.nix);
|
build = nixpkgs.lib.genAttrs systems (system: self.packages.${system}.nix);
|
||||||
|
|
||||||
build-static = nixpkgs.lib.genAttrs linuxSystems (system: self.packages.${system}.nix-static);
|
buildStatic = nixpkgs.lib.genAttrs linuxSystems (system: self.packages.${system}.nix-static);
|
||||||
|
|
||||||
# Perl bindings for various platforms.
|
# Perl bindings for various platforms.
|
||||||
perlBindings = nixpkgs.lib.genAttrs systems (system: self.packages.${system}.nix.perl-bindings);
|
perlBindings = nixpkgs.lib.genAttrs systems (system: self.packages.${system}.nix.perl-bindings);
|
||||||
|
@ -441,7 +441,7 @@
|
||||||
binaryTarball = self.hydraJobs.binaryTarball.${system};
|
binaryTarball = self.hydraJobs.binaryTarball.${system};
|
||||||
perlBindings = self.hydraJobs.perlBindings.${system};
|
perlBindings = self.hydraJobs.perlBindings.${system};
|
||||||
} // nixpkgs.lib.optionalAttrs (builtins.elem system linuxSystems) {
|
} // nixpkgs.lib.optionalAttrs (builtins.elem system linuxSystems) {
|
||||||
build-static = self.hydraJobs.build-static.${system};
|
buildStatic = self.hydraJobs.buildStatic.${system};
|
||||||
});
|
});
|
||||||
|
|
||||||
packages = forAllSystems (system: {
|
packages = forAllSystems (system: {
|
||||||
|
|
Loading…
Reference in a new issue