nixpkgs/pkgs/development/perl-modules/DBD-SQLite/default.nix

44 lines
1.0 KiB
Nix
Raw Normal View History

2012-07-31 21:21:41 +00:00
{ stdenv, fetchurl, buildPerlPackage, DBI, sqlite }:
buildPerlPackage rec {
2016-09-05 11:11:16 +00:00
name = "DBD-SQLite-1.50";
2012-07-31 21:21:41 +00:00
src = fetchurl {
url = "mirror://cpan/authors/id/I/IS/ISHIGAKI/${name}.tar.gz";
2016-09-05 11:11:16 +00:00
sha256 = "1qcw2nzla03ywrl6mx1qklvbc8n5bn4gxqbjnvadfkwlffmi7i9s";
};
2012-07-31 21:21:41 +00:00
propagatedBuildInputs = [ DBI ];
2012-07-31 21:21:41 +00:00
makeMakerFlags = "SQLITE_LOCATION=${sqlite.dev}";
patches = [
# Support building against our own sqlite.
./external-sqlite.patch
];
2015-10-13 20:30:30 +00:00
sqlite_dev = sqlite.dev;
sqlite_out = sqlite.out;
postPatch = "substituteAllInPlace Makefile.PL; cat Makefile.PL";
preBuild =
''
substituteInPlace Makefile --replace -L/usr/lib ""
'';
postInstall =
''
# Prevent warnings from `strip'.
chmod -R u+w $out
# Get rid of a pointless copy of the SQLite sources.
rm -rf $out/lib/perl5/site_perl/*/*/auto/share
'';
# Disabled because the tests can randomly fail due to timeouts
# (e.g. "database is locked(5) at dbdimp.c line 402 at t/07busy.t").
2016-09-05 11:11:16 +00:00
#doCheck = false;
2012-07-31 21:21:41 +00:00
meta.platforms = stdenv.lib.platforms.unix;
}