* 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
This commit is contained in:
@@ -1,18 +1,16 @@
|
||||
args:
|
||||
args.stdenv.mkDerivation rec {
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "fcgi-2.4.0";
|
||||
|
||||
src = args.fetchurl {
|
||||
name = name + ".tar.gz";
|
||||
src = fetchurl {
|
||||
url = http://www.fastcgi.com/dist/fcgi.tar.gz;
|
||||
sha256 = "1f857wnl1d6jfrgfgfpz3zdaj8fch3vr13mnpcpvy8bang34bz36";
|
||||
};
|
||||
|
||||
buildInputs =(with args; []);
|
||||
|
||||
meta = {
|
||||
description = "FastCGI is a language independent, scalable, open extension to CG";
|
||||
homepage = http://www.fastcgi.com/;
|
||||
license = "FastCGI see LICENSE.TERMS";
|
||||
description = "FastCGI is a language independent, scalable, open extension to CG";
|
||||
homepage = http://www.fastcgi.com/;
|
||||
license = "FastCGI see LICENSE.TERMS";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user