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