mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
1357c14500
svn path=/nixpkgs/trunk/; revision=13386
20 lines
435 B
Nix
20 lines
435 B
Nix
{fetchurl, perl, perlDBI, sqlite}:
|
|
|
|
import ../generic perl {
|
|
name = "DBD-SQLite-1.14";
|
|
|
|
src = fetchurl {
|
|
url = mirror://cpan/authors/id/M/MS/MSERGEANT/DBD-SQLite-1.14.tar.gz;
|
|
sha256 = "01qd5xfx702chg3bv2k727kfdp84zy5xh31y6njvivkp78vrs624";
|
|
};
|
|
|
|
propagatedBuildInputs = [perlDBI];
|
|
|
|
makeMakerFlags = "SQLITE_LOCATION=${sqlite}";
|
|
|
|
patches = [
|
|
# Prevent segfaults in case of timeouts.
|
|
./reset.patch
|
|
];
|
|
}
|