forked from lix-project/lix
Qyriad
2041bdac2d
Perl has an env hook[1]. Passing the paths manually without putting them
in buildInputs is harder to understand, plays less nicely with dev
shells, and is less build-generic.
Produced identical output on my x86_64-linux machine, and on my
aarch64-darwin machine was identical save for the derivation output path
which gets embedded into the .dylib Mach-O.
Change-Id: Ib313caa5a6f0b0e3154ce6f05379033920d0d290
49 lines
923 B
Nix
49 lines
923 B
Nix
{ lib, fileset
|
|
, stdenv
|
|
, perl, perlPackages
|
|
, autoconf-archive, autoreconfHook, pkg-config
|
|
, nix, curl, bzip2, xz, boost, libsodium, darwin
|
|
}:
|
|
|
|
perl.pkgs.toPerlModule (stdenv.mkDerivation {
|
|
name = "nix-perl-${nix.version}";
|
|
|
|
src = fileset.toSource {
|
|
root = ../.;
|
|
fileset = fileset.unions [
|
|
../.version
|
|
../m4
|
|
../mk
|
|
./MANIFEST
|
|
./Makefile
|
|
./Makefile.config.in
|
|
./configure.ac
|
|
./lib
|
|
./local.mk
|
|
];
|
|
};
|
|
|
|
nativeBuildInputs =
|
|
[ autoconf-archive
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs =
|
|
[ nix
|
|
curl
|
|
bzip2
|
|
xz
|
|
perl
|
|
boost
|
|
perlPackages.DBI
|
|
perlPackages.DBDSQLite
|
|
]
|
|
++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium
|
|
++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/perl";
|
|
})
|