tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
perl-DBD-Pg: 3.0.0 -> 3.5.3
Pascal Wittmann
10 years ago
6f37d11e
73e9dbfe
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
perl-modules
DBD-Pg
default.nix
+2
-2
pkgs/development/perl-modules/DBD-Pg/default.nix
reviewed
···
1
1
{ stdenv, fetchurl, buildPerlPackage, DBI, postgresql }:
2
2
3
3
buildPerlPackage rec {
4
4
-
name = "DBD-Pg-3.0.0";
4
4
+
name = "DBD-Pg-3.5.3";
5
5
6
6
src = fetchurl {
7
7
url = "mirror://cpan/authors/id/T/TU/TURNSTEP/${name}.tar.gz";
8
8
-
sha256 = "10s1dhpxxqfl421388l6gzfdm1gzxf5iah42i1w6yji9mgkz8hf8";
8
8
+
sha256 = "03m9w1cd0yyrbqwkwcl92j1cpmasmm69f3hwvcrlfsi5fnwsk63y";
9
9
};
10
10
11
11
buildInputs = [ postgresql ];