about summary refs log tree commit diff
path: root/pkgs/development/libraries/gsl
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2008-01-30 17:20:48 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2008-01-30 17:20:48 +0000
commit5bca69ac34e4b9aaa233aef75396830f42b2d3d7 (patch)
tree8d9c956fd7dcf0a68c46db61ded970e81a98736b /pkgs/development/libraries/gsl
parentf831e0420a6b17799bec42fdaaee2f11d8794ff8 (diff)
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
Diffstat (limited to 'pkgs/development/libraries/gsl')
-rw-r--r--pkgs/development/libraries/gsl/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/libraries/gsl/default.nix b/pkgs/development/libraries/gsl/default.nix
index a5248d4229965..19655f97b0d42 100644
--- a/pkgs/development/libraries/gsl/default.nix
+++ b/pkgs/development/libraries/gsl/default.nix
@@ -1,14 +1,12 @@
-args:
-args.stdenv.mkDerivation {
+args: with args;
+stdenv.mkDerivation {
   name = "gsl-1.9";
 
-  src = args.fetchurl {
+  src = fetchurl {
     url = ftp://ftp.gnu.org/gnu/gsl/gsl-1.9.tar.gz;
     sha256 = "0l12js65c1qf3s7gmgay6gj5nbs6635py41dj8nk3hlp95wcdlgw";
   };
 
-  buildInputs =(with args; []);
-
   meta = { 
       description = "numerical library (>1000 functions)";
       homepage = http://www.gnu.org/software/gsl;