about summary refs log tree commit diff
path: root/pkgs/development/interpreters/groovy
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-07-28 11:55:54 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-07-28 11:55:54 +0000
commit66097104090e06c43a784193809bc8843a2ec052 (patch)
tree021d726cde3c2dec5d4341340b37589feef3b15c /pkgs/development/interpreters/groovy
parentb4a3f99c7812a6c8bc34979200693b7010afffcc (diff)
downloadnixlib-66097104090e06c43a784193809bc8843a2ec052.tar
nixlib-66097104090e06c43a784193809bc8843a2ec052.tar.gz
nixlib-66097104090e06c43a784193809bc8843a2ec052.tar.bz2
nixlib-66097104090e06c43a784193809bc8843a2ec052.tar.lz
nixlib-66097104090e06c43a784193809bc8843a2ec052.tar.xz
nixlib-66097104090e06c43a784193809bc8843a2ec052.tar.zst
nixlib-66097104090e06c43a784193809bc8843a2ec052.zip
* Get rid of many instances of "args: with args;", and other coding
  guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
Diffstat (limited to 'pkgs/development/interpreters/groovy')
-rw-r--r--pkgs/development/interpreters/groovy/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/groovy/default.nix b/pkgs/development/interpreters/groovy/default.nix
index b7dc135215cd..cc994aeea34b 100644
--- a/pkgs/development/interpreters/groovy/default.nix
+++ b/pkgs/development/interpreters/groovy/default.nix
@@ -1,4 +1,4 @@
-args: with args;
+{ stdenv, fetchurl, unzip }:
 
 # at runtime, need jdk
 
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
 
   phases = "unpackPhase installPhase";
 
-  buildInputs = [unzip];
+  buildInputs = [ unzip ];
 
   meta = {
     description = "An agile dynamic language for the Java Platform";