106584d523
Signed-off-by: Shea Levy <shea@shealevy.com>
40 lines
943 B
Nix
40 lines
943 B
Nix
{ stdenv, fetchurl, buildPerlPackage, DBI, sqlite }:
|
|
|
|
buildPerlPackage rec {
|
|
name = "DBD-SQLite-1.37";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://cpan/authors/id/A/AD/ADAMK/${name}.tar.gz";
|
|
sha256 = "0197kvlziaj2wfdbzlhdlqmzvb29fmfyy6y2isbbwlg0b0f7ccd1";
|
|
};
|
|
|
|
propagatedBuildInputs = [ DBI ];
|
|
|
|
makeMakerFlags = "SQLITE_LOCATION=${sqlite}";
|
|
|
|
patches = [
|
|
# Support building against our own sqlite.
|
|
./external-sqlite.patch
|
|
];
|
|
|
|
preBuild =
|
|
''
|
|
substituteInPlace Makefile --replace -L/usr/lib ""
|
|
'';
|
|
|
|
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
|
|
'';
|
|
|
|
# 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").
|
|
doCheck = false;
|
|
|
|
meta.platforms = stdenv.lib.platforms.linux;
|
|
}
|