pgadmin3 added

svn path=/nixpkgs/branches/stdenv-updates/; revision=10380
This commit is contained in:
Yury G. Kudryashov 2008-01-29 13:16:40 +00:00
parent 6002db9e01
commit 378a59a7b8
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,18 @@
args:
args.stdenv.mkDerivation {
name = "pgadmin3-1.8.1";
src = args.fetchurl {
name = "pgadmin3-v1.8.1.tar.gz";
url = "http://ftp3.de.postgresql.org/pub/Mirrors/ftp.postgresql.org//pgadmin3/release/v1.8.1/src/pgadmin3-1.8.1.tar.gz";
sha256 = "1vnpbgb2ksvcgbzab4jjspwvs5cvam53azinfavjad4kpjczdywb";
};
buildInputs =(with args; [postgresql wxGTK libxml2 libxslt openssl]);
meta = {
description = "postgresql admin gui tool";
homepage = http://www.pgadmin.org/download/;
license = "GPL2";
};
}

View file

@ -5104,6 +5104,11 @@ rec {
inherit fetchurl stdenv;
};
pgadmin = import ../applications/misc/pgadmin {
inherit fetchurl stdenv postgresql libxml2 libxslt openssl;
wxGTK = wxGTK28;
};
pgf = import ../misc/tex/pgf {
inherit fetchurl stdenv;
};