diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-02-05 12:22:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 12:22:52 +0100 |
commit | 271eedb8373819fbeb92660e081ba5f734b54421 (patch) | |
tree | 47b1ec73af2ab22776474777905a37e0867732f8 /flake.nix | |
parent | c77f4a90129cb52aeaecae5fcfa687c6a4374999 (diff) | |
parent | d5acc4865c8a5853bc5ede606d98c8055f8afdb2 (diff) |
Merge pull request #4495 from Infinisil/perl-bindings-passthru
Use passthru for perl-bindings, allows Nix patching for Hydra
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -115,7 +115,7 @@ # 'nix.perl-bindings' packages. overlay = final: prev: { - nix = with final; with commonDeps pkgs; (stdenv.mkDerivation { + nix = with final; with commonDeps pkgs; stdenv.mkDerivation { name = "nix-${version}"; inherit version; @@ -163,9 +163,8 @@ installCheckFlags = "sysconfdir=$(out)/etc"; separateDebugInfo = true; - }) // { - perl-bindings = with final; stdenv.mkDerivation { + passthru.perl-bindings = with final; stdenv.mkDerivation { name = "nix-perl-${version}"; src = self; |