mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
DBD-Pg 2.13.1
svn path=/nixpkgs/trunk/; revision=15350
This commit is contained in:
parent
621b56e233
commit
3f9e764096
15
pkgs/development/perl-modules/DBD-Pg/default.nix
Normal file
15
pkgs/development/perl-modules/DBD-Pg/default.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{fetchurl, buildPerlPackage, DBI, postgresql}:
|
||||
|
||||
buildPerlPackage {
|
||||
name = "DBD-Pg-2.13.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://cpan/authors/id/T/TU/TURNSTEP/DBD-Pg-2.13.1.tar.gz;
|
||||
sha256 = "9af40f47dc440b6ab031d6109ee694ef2d4a0aa899bc9870d8a992f2e4e6d1e6";
|
||||
};
|
||||
|
||||
buildInputs = [postgresql] ;
|
||||
propagatedBuildInputs = [DBI];
|
||||
|
||||
makeMakerFlags = "POSTGRES_HOME=${postgresql}";
|
||||
}
|
Loading…
Reference in New Issue
Block a user