Nix-expr style review
Unneded args.something replaced with args: with args; line. After this line args is the only place where we can recieve variables from. Also removed several buildInputs = []; lines. svn path=/nixpkgs/trunk/; revision=10415
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "pgadmin3-1.8.1";
|
||||
|
||||
src = args.fetchurl {
|
||||
src = 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]);
|
||||
buildInputs = [postgresql wxGTK libxml2 libxslt openssl];
|
||||
|
||||
meta = {
|
||||
description = "postgresql admin gui tool";
|
||||
|
||||
Reference in New Issue
Block a user