2018-12-15 04:50:31 +01:00
|
|
|
{ stdenv, fetchurl, buildPerlPackage, perl, DBI, sqlite }:
|
2008-11-24 11:11:09 +01:00
|
|
|
|
2019-06-20 15:07:56 +02:00
|
|
|
buildPerlPackage {
|
|
|
|
pname = "DBD-SQLite";
|
|
|
|
version = "1.62";
|
2012-07-31 23:21:41 +02:00
|
|
|
|
2008-11-24 11:11:09 +01:00
|
|
|
src = fetchurl {
|
2019-04-21 23:19:11 +02:00
|
|
|
url = mirror://cpan/authors/id/I/IS/ISHIGAKI/DBD-SQLite-1.62.tar.gz;
|
|
|
|
sha256 = "0p78ri1q6xpc1i98i6mlriv8n66iz8r5r11dlsknjm4y58rfz0mx";
|
2008-11-24 11:11:09 +01:00
|
|
|
};
|
2012-07-31 23:21:41 +02:00
|
|
|
|
2012-01-04 15:23:41 +01:00
|
|
|
propagatedBuildInputs = [ DBI ];
|
2017-10-31 11:25:56 +01:00
|
|
|
buildInputs = [ sqlite ];
|
2008-11-24 11:11:09 +01:00
|
|
|
|
|
|
|
patches = [
|
2009-07-02 15:55:38 +02:00
|
|
|
# Support building against our own sqlite.
|
|
|
|
./external-sqlite.patch
|
2008-11-24 11:11:09 +01:00
|
|
|
];
|
2009-03-24 16:42:24 +01:00
|
|
|
|
2018-02-07 03:06:23 +01:00
|
|
|
makeMakerFlags = "SQLITE_INC=${sqlite.dev}/include SQLITE_LIB=${sqlite.out}/lib";
|
2015-10-13 22:30:30 +02:00
|
|
|
|
2018-06-08 23:54:37 +02:00
|
|
|
postInstall = ''
|
|
|
|
# Get rid of a pointless copy of the SQLite sources.
|
2018-12-15 04:50:31 +01:00
|
|
|
rm -rf $out/${perl.libPrefix}/*/*/auto/share
|
2018-06-08 23:54:37 +02:00
|
|
|
'';
|
2012-07-31 23:21:41 +02:00
|
|
|
|
2017-10-31 11:25:56 +01: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 11:11:09 +01:00
|
|
|
}
|