2012-07-31 22:21:41 +01:00
|
|
|
{ stdenv, fetchurl, buildPerlPackage, DBI, sqlite }:
|
2008-11-24 10:11:09 +00:00
|
|
|
|
2009-07-02 14:55:38 +01:00
|
|
|
buildPerlPackage rec {
|
2018-06-08 22:54:37 +01:00
|
|
|
name = "DBD-SQLite-1.58";
|
2012-07-31 22:21:41 +01:00
|
|
|
|
2008-11-24 10:11:09 +00:00
|
|
|
src = fetchurl {
|
2018-06-08 22:54:37 +01:00
|
|
|
url = mirror://cpan/authors/id/I/IS/ISHIGAKI/DBD-SQLite-1.58.tar.gz;
|
|
|
|
sha256 = "0fqx386jgs9mmrknr7smmzapf07izgivza7x08lfm39ks2cxs83i";
|
2008-11-24 10:11:09 +00:00
|
|
|
};
|
2012-07-31 22:21:41 +01:00
|
|
|
|
2012-01-04 14:23:41 +00:00
|
|
|
propagatedBuildInputs = [ DBI ];
|
2017-10-31 10:25:56 +00:00
|
|
|
buildInputs = [ sqlite ];
|
2008-11-24 10:11:09 +00:00
|
|
|
|
|
|
|
patches = [
|
2009-07-02 14:55:38 +01: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
|
|
|
|
2018-02-07 02:06:23 +00:00
|
|
|
makeMakerFlags = "SQLITE_INC=${sqlite.dev}/include SQLITE_LIB=${sqlite.out}/lib";
|
2015-10-13 21:30:30 +01:00
|
|
|
|
2018-06-08 22:54:37 +01:00
|
|
|
postInstall = ''
|
|
|
|
# Get rid of a pointless copy of the SQLite sources.
|
|
|
|
rm -rf $out/lib/perl5/site_perl/*/*/auto/share
|
|
|
|
'';
|
2012-07-31 22:21:41 +01:00
|
|
|
|
2017-10-31 10:25:56 +00: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 10:11:09 +00:00
|
|
|
}
|