nix-perl -> nix.perl-bindings

This commit is contained in:
Eelco Dolstra 2019-10-04 17:25:59 +02:00
parent 204291f059
commit 21e2088c1b
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -93,11 +93,11 @@
in {
# A Nixpkgs overlay that overrides the 'nix' and 'nix-perl'
# packages.
# A Nixpkgs overlay that overrides the 'nix' and
# 'nix.perl-bindings' packages.
overlay = final: prev: {
nix = with final; with commonDeps pkgs; releaseTools.nixBuild {
nix = with final; with commonDeps pkgs; (releaseTools.nixBuild {
name = "nix";
src = self.hydraJobs.tarball;
@ -127,9 +127,9 @@
doInstallCheck = true;
installCheckFlags = "sysconfdir=$(out)/etc";
};
}) // {
nix-perl = with final; releaseTools.nixBuild {
perl-bindings = with final; releaseTools.nixBuild {
name = "nix-perl";
src = self.hydraJobs.tarball;
@ -149,6 +149,8 @@
};
};
hydraJobs = {
# Source tarball.
@ -197,7 +199,7 @@
build = nixpkgs.lib.genAttrs systems (system: nixpkgsFor.${system}.nix);
# Perl bindings for various platforms.
perlBindings = nixpkgs.lib.genAttrs systems (system: nixpkgsFor.${system}.nix-perl);
perlBindings = nixpkgs.lib.genAttrs systems (system: nixpkgsFor.${system}.nix.perl-bindings);
# Binary tarball for various platforms, containing a Nix store
# with the closure of 'nix' package, and the second half of
@ -429,7 +431,7 @@
};
packages = {
inherit (nixpkgsFor.x86_64-linux) nix nix-perl;
inherit (nixpkgsFor.x86_64-linux) nix;
};
defaultPackage = self.packages.nix;