perlPackages.DBDSQLite: 1.55_07 -> 1.58 (please ignore it)
This commit is contained in:
parent
0decee48f5
commit
208a3ff6c0
@ -1,12 +1,11 @@
|
|||||||
{ stdenv, fetchurl, buildPerlPackage, DBI, sqlite }:
|
{ stdenv, fetchurl, buildPerlPackage, DBI, sqlite }:
|
||||||
|
|
||||||
buildPerlPackage rec {
|
buildPerlPackage rec {
|
||||||
name = "DBD-SQLite-${version}";
|
name = "DBD-SQLite-1.58";
|
||||||
version = "1.55_07";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/DBD-SQLite/DBD-SQLite/archive/${version}.tar.gz";
|
url = mirror://cpan/authors/id/I/IS/ISHIGAKI/DBD-SQLite-1.58.tar.gz;
|
||||||
sha256 = "0213a31eb7b5afc2d7b3775ca2d1717d07fc7e9ed21ae73b2513a8d54ca222d8";
|
sha256 = "0fqx386jgs9mmrknr7smmzapf07izgivza7x08lfm39ks2cxs83i";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ DBI ];
|
propagatedBuildInputs = [ DBI ];
|
||||||
@ -19,23 +18,10 @@ buildPerlPackage rec {
|
|||||||
|
|
||||||
makeMakerFlags = "SQLITE_INC=${sqlite.dev}/include SQLITE_LIB=${sqlite.out}/lib";
|
makeMakerFlags = "SQLITE_INC=${sqlite.dev}/include SQLITE_LIB=${sqlite.out}/lib";
|
||||||
|
|
||||||
preBuild =
|
postInstall = ''
|
||||||
''
|
# Get rid of a pointless copy of the SQLite sources.
|
||||||
substituteInPlace Makefile --replace -L/usr/lib ""
|
rm -rf $out/lib/perl5/site_perl/*/*/auto/share
|
||||||
'';
|
'';
|
||||||
|
|
||||||
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 = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Self Contained SQLite RDBMS in a DBI Driver";
|
description = "Self Contained SQLite RDBMS in a DBI Driver";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user