1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 06:31:14 +02:00

Slap on perl-bindings in the caller

The Perl bindings are not part of Nix, but a downstream package, so they
don't belong in `package.nix`.

They don't really belong as an attribute on `nix` either, but we can
just leave that interface as is for now.
This commit is contained in:
John Ericson 2023-12-03 18:47:54 -05:00
parent a5a45e64e1
commit 7e2b1cce6a
2 changed files with 9 additions and 7 deletions

View file

@ -1,5 +1,4 @@
{ lib
, callPackage
, stdenv
, releaseTools
, autoconf-archive
@ -353,12 +352,6 @@ in {
hardeningDisable = lib.optional stdenv.hostPlatform.isStatic "pie";
passthru = {
perl-bindings = callPackage ./perl {
inherit fileset stdenv;
};
};
meta = {
platforms = lib.platforms.unix;
mainProgram = "nix";