mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
pgadmin3 added
svn path=/nixpkgs/branches/stdenv-updates/; revision=10380
This commit is contained in:
parent
6002db9e01
commit
378a59a7b8
18
pkgs/applications/misc/pgadmin/default.nix
Normal file
18
pkgs/applications/misc/pgadmin/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue