From 66097104090e06c43a784193809bc8843a2ec052 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 28 Jul 2010 11:55:54 +0000 Subject: * 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 --- pkgs/development/libraries/babl/default.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'pkgs/development/libraries/babl/default.nix') diff --git a/pkgs/development/libraries/babl/default.nix b/pkgs/development/libraries/babl/default.nix index d00e3f67f3c..2464a09f51a 100644 --- a/pkgs/development/libraries/babl/default.nix +++ b/pkgs/development/libraries/babl/default.nix @@ -1,17 +1,16 @@ -args: -args.stdenv.mkDerivation { +{ stdenv, fetchurl }: + +stdenv.mkDerivation { name = "babl-0.0.22"; - src = args.fetchurl { + src = fetchurl { url = ftp://ftp.gtk.org/pub/babl/0.0/babl-0.0.22.tar.bz2; sha256 = "0v8gbf9si4sd06199f8lfmrsbvi6i0hxphd34kyvsj6g2kkkg10s"; }; - buildInputs =(with args; []); - meta = { - description = "image pixel format coneversion libraray"; - homepage = http://gegl.org/babl/; - license = "GPL3"; + description = "Image pixel format conversion library"; + homepage = http://gegl.org/babl/; + license = "GPL3"; }; } -- cgit 1.4.1