forked from lix-project/lix
Qyriad
b9be46fb31
We're not using it anymore. Any leftover bugs in the Meson buildsystem
are now just bugs.
Closes #249.
Change-Id: I0465a0c37ae819f94d40e7829f5bff046aa63d73
60 lines
969 B
Nix
60 lines
969 B
Nix
{
|
|
lib,
|
|
fileset,
|
|
stdenv,
|
|
perl,
|
|
perlPackages,
|
|
pkg-config,
|
|
nix,
|
|
curl,
|
|
bzip2,
|
|
xz,
|
|
boost,
|
|
libsodium,
|
|
darwin,
|
|
meson,
|
|
ninja,
|
|
}:
|
|
|
|
perl.pkgs.toPerlModule (
|
|
stdenv.mkDerivation {
|
|
name = "nix-perl-${nix.version}";
|
|
|
|
src = fileset.toSource {
|
|
root = ../.;
|
|
fileset = fileset.unions ([
|
|
../.version
|
|
./lib
|
|
./meson.build
|
|
]);
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
];
|
|
|
|
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;
|
|
|
|
# Nixpkgs' Meson hook likes to set this to "plain".
|
|
mesonBuildType = "debugoptimized";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/perl";
|
|
}
|
|
)
|