* Merged most of the stdenv-updates branch. Some stuff didn't
merge cleanly right away (kde-4, kernel stuff) so it should be merged later. But the stdenv stuff is all there. svn path=/nixpkgs/branches/stdenv-updates-merge/; revision=10793
This commit is contained in:
14
pkgs/servers/sql/postgresql/8.2.6.nix
Normal file
14
pkgs/servers/sql/postgresql/8.2.6.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
args: with args;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "postgresql-" + version;
|
||||
LC_ALL = "en_US";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://ftp.de.postgresql.org/mirror/postgresql/source/v${version}/${name}.tar.bz2";
|
||||
sha256="056ixbsfmdwhniryc0mr1kl66jywkqqhqvjdi7i3v4qzh9z34hgf";
|
||||
};
|
||||
|
||||
passthru = { inherit readline; };
|
||||
buildInputs = [zlib ncurses readline];
|
||||
}
|
||||
14
pkgs/servers/sql/postgresql/8.3.0.nix
Normal file
14
pkgs/servers/sql/postgresql/8.3.0.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
args: with args;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "postgresql-" + version;
|
||||
LC_ALL = "en_US";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://ftp.de.postgresql.org/mirror/postgresql/source/v${version}/${name}.tar.bz2";
|
||||
sha256="19kf0q45d5zd1rxffin0iblizckk8cp6fpgb52sipqkpnmm6sdc5";
|
||||
};
|
||||
|
||||
passthru = { inherit readline; };
|
||||
buildInputs = [zlib ncurses readline];
|
||||
}
|
||||
Reference in New Issue
Block a user