From 5bca69ac34e4b9aaa233aef75396830f42b2d3d7 Mon Sep 17 00:00:00 2001 From: "Yury G. Kudryashov" Date: Wed, 30 Jan 2008 17:20:48 +0000 Subject: 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 --- pkgs/applications/editors/bvi/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkgs/applications/editors/bvi/default.nix') 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"; -- cgit 1.4.1