summary refs log tree commit diff
path: root/pkgs/applications/editors/bvi
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/applications/editors/bvi
parentf831e0420a6b17799bec42fdaaee2f11d8794ff8 (diff)
downloadnixpkgs-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar
nixpkgs-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.gz
nixpkgs-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.bz2
nixpkgs-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.lz
nixpkgs-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.xz
nixpkgs-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.zst
nixpkgs-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.zip
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/applications/editors/bvi')
-rw-r--r--pkgs/applications/editors/bvi/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/editors/bvi/default.nix b/pkgs/applications/editors/bvi/default.nix
index 6d9ffdaecc8..223aabcdf82 100644
--- a/pkgs/applications/editors/bvi/default.nix
+++ b/pkgs/applications/editors/bvi/default.nix
@@ -1,13 +1,13 @@
-args:
-args.stdenv.mkDerivation {
+args : with args;
+stdenv.mkDerivation {
   name = "bvi-1.3.2";
 
-  src = args.fetchurl {
+  src = fetchurl {
     url = http://prdownloads.sourceforge.net/bvi/bvi-1.3.2.src.tar.gz;
     sha256 = "110wxqnyianqamxq4y53drqqxb9vp4k2fcvic45qggvlqkqhlfgz";
   };
 
-  buildInputs =(with args; [ncurses]);
+  buildInputs = [ncurses];
 
   meta = { 
       description = "hex editor with vim style keybindings";