2012-07-31 21:21:41 +00:00
|
|
|
{ stdenv, fetchurl, buildPerlPackage, DBI, sqlite }:
|
2008-11-24 10:11:09 +00:00
|
|
|
|
2009-07-02 13:55:38 +00:00
|
|
|
buildPerlPackage rec {
|
2016-09-05 11:11:16 +00:00
|
|
|
name = "DBD-SQLite-1.50";
|
2012-07-31 21:21:41 +00:00
|
|
|
|
2008-11-24 10:11:09 +00:00
|
|
|
src = fetchurl {
|
2014-04-07 12:04:53 +00:00
|
|
|
url = "mirror://cpan/authors/id/I/IS/ISHIGAKI/${name}.tar.gz";
|
2016-09-05 11:11:16 +00:00
|
|
|
sha256 = "1qcw2nzla03ywrl6mx1qklvbc8n5bn4gxqbjnvadfkwlffmi7i9s";
|
2008-11-24 10:11:09 +00:00
|
|
|
};
|
2012-07-31 21:21:41 +00:00
|
|
|
|
2012-01-04 14:23:41 +00:00
|
|
|
propagatedBuildInputs = [ DBI ];
|
2012-07-31 21:21:41 +00:00
|
|
|
|
2016-04-16 17:47:23 +00:00
|
|
|
makeMakerFlags = "SQLITE_LOCATION=${sqlite.dev}";
|
2008-11-24 10:11:09 +00:00
|
|
|
|
|
|
|
patches = [
|
2009-07-02 13:55:38 +00:00
|
|
|
# Support building against our own sqlite.
|
|
|
|
./external-sqlite.patch
|
2008-11-24 10:11:09 +00:00
|
|
|
];
|
2009-03-24 15:42:24 +00:00
|
|
|
|
2015-10-13 20:30:30 +00:00
|
|
|
sqlite_dev = sqlite.dev;
|
|
|
|
sqlite_out = sqlite.out;
|
|
|
|
postPatch = "substituteAllInPlace Makefile.PL; cat Makefile.PL";
|
|
|
|
|
2012-09-12 16:33:03 +00:00
|
|
|
preBuild =
|
|
|
|
''
|
|
|
|
substituteInPlace Makefile --replace -L/usr/lib ""
|
|
|
|
'';
|
|
|
|
|
2012-08-17 22:11:53 +00:00
|
|
|
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
|
|
|
|
'';
|
2011-04-11 09:11:36 +00:00
|
|
|
|
2009-03-24 15:42:24 +00:00
|
|
|
# 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
|
|
|
|
2013-11-05 09:46:59 +00:00
|
|
|
meta.platforms = stdenv.lib.platforms.unix;
|
2008-11-24 10:11:09 +00:00
|
|
|
}
|