Add some packages to the channel

This commit is contained in:
Eelco Dolstra
2012-07-31 17:21:41 -04:00
parent 5300731177
commit bd8d7a8d15
4 changed files with 16 additions and 10 deletions

View File

@@ -1,15 +1,15 @@
{fetchurl, buildPerlPackage, DBI, sqlite}:
{ stdenv, fetchurl, buildPerlPackage, DBI, sqlite }:
buildPerlPackage rec {
name = "DBD-SQLite-1.35";
src = fetchurl {
url = "mirror://cpan/authors/id/A/AD/ADAMK/${name}.tar.gz";
sha256 = "0zdwnj0jmkaqb2grkh451g1jc8nsdy4sf6lhn8xd0my0a3pd227z";
};
propagatedBuildInputs = [ DBI ];
makeMakerFlags = "SQLITE_LOCATION=${sqlite}";
patches = [
@@ -23,4 +23,6 @@ buildPerlPackage rec {
# 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;
}