* Cleanup: remove obsolete references to ‘xz’, which is in stdenv now.

svn path=/nixpkgs/branches/stdenv-updates/; revision=31678
This commit is contained in:
Eelco Dolstra
2012-01-18 20:53:01 +00:00
parent c556a6ea46
commit d4d7931a62
70 changed files with 117 additions and 142 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pcre, libiconv ? null, xz }:
{ stdenv, fetchurl, pcre, libiconv ? null }:
let version = "2.10"; in
@@ -10,7 +10,7 @@ stdenv.mkDerivation ({
sha256 = "1cvsqyfzk1p38fcaav22dn76fkd02g7bjnqna6vrpk9vy9rnfybc";
};
buildInputs = [ pcre xz ]
buildInputs = [ pcre ]
++ (stdenv.lib.optional (libiconv != null) libiconv);
doCheck = if stdenv.isDarwin then false else true;