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 {
|
2017-10-31 03:25:56 -07:00
|
|
|
name = "DBD-SQLite-${version}";
|
2018-02-06 18:06:23 -08:00
|
|
|
version = "1.55_07";
|
2012-07-31 14:21:41 -07:00
|
|
|
|
2008-11-24 02:11:09 -08:00
|
|
|
src = fetchurl {
|
2018-02-06 18:06:23 -08:00
|
|
|
url = "https://github.com/DBD-SQLite/DBD-SQLite/archive/${version}.tar.gz";
|
|
|
|
sha256 = "0213a31eb7b5afc2d7b3775ca2d1717d07fc7e9ed21ae73b2513a8d54ca222d8";
|
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 ];
|
2017-10-31 03:25:56 -07:00
|
|
|
buildInputs = [ sqlite ];
|
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
|
|
|
|
2018-02-06 18:06:23 -08:00
|
|
|
makeMakerFlags = "SQLITE_INC=${sqlite.dev}/include SQLITE_LIB=${sqlite.out}/lib";
|
2015-10-13 13:30:30 -07:00
|
|
|
|
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
|
|
|
|
2017-10-31 03:25:56 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Self Contained SQLite RDBMS in a DBI Driver";
|
|
|
|
license = with licenses; [ artistic1 gpl1Plus ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2008-11-24 02:11:09 -08:00
|
|
|
}
|