mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
postgresql: forgotten to remove unused default.nix and builder.sh
svn path=/nixpkgs/branches/stdenv-updates/; revision=10610
This commit is contained in:
parent
6e337bd44d
commit
b5b189bed8
2 changed files with 0 additions and 28 deletions
|
@ -1,10 +0,0 @@
|
|||
source $stdenv/setup
|
||||
|
||||
export LANG=en_US
|
||||
|
||||
# configureFlags=""
|
||||
# if test "$jdbcSupport"; then
|
||||
# configureFlags="--with-java $configureFlags"
|
||||
# fi
|
||||
|
||||
genericBuild
|
|
@ -1,18 +0,0 @@
|
|||
{stdenv, fetchurl, zlib, ncurses, readline}:
|
||||
|
||||
assert zlib != null;
|
||||
assert ncurses != null;
|
||||
assert readline != null;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "postgresql-8.2.6";
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.de.postgresql.org/mirror/postgresql/source/v8.2.6/postgresql-8.2.6.tar.bz2;
|
||||
sha256="056ixbsfmdwhniryc0mr1kl66jywkqqhqvjdi7i3v4qzh9z34hgf";
|
||||
};
|
||||
|
||||
inherit readline;
|
||||
buildInputs = [zlib ncurses readline];
|
||||
}
|
Loading…
Reference in a new issue