Updating the dependencies of the new coreutils: they need perl.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18494
This commit is contained in:
parent
ab61e5b40d
commit
9effdda93b
|
@ -1,4 +1,4 @@
|
||||||
{stdenv, fetchurl}:
|
{stdenv, fetchurl, perl ? null}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "coreutils-5.97";
|
name = "coreutils-5.97";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{stdenv, fetchurl, aclSupport ? false, acl}:
|
{stdenv, fetchurl, aclSupport ? false, acl, perl}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "coreutils-8.1";
|
name = "coreutils-8.1";
|
||||||
|
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1c68q4c4fg6x22ba2p8xb0ddn4xdl847np2g33h63bgj9pdav8ay";
|
sha256 = "1c68q4c4fg6x22ba2p8xb0ddn4xdl847np2g33h63bgj9pdav8ay";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = stdenv.lib.optional aclSupport acl;
|
buildInputs = [ perl ] ++ stdenv.lib.optional aclSupport acl;
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
|
|
|
@ -514,7 +514,7 @@ let
|
||||||
then import ../tools/misc/coreutils-5
|
then import ../tools/misc/coreutils-5
|
||||||
else import ../tools/misc/coreutils)
|
else import ../tools/misc/coreutils)
|
||||||
{
|
{
|
||||||
inherit fetchurl stdenv acl;
|
inherit fetchurl stdenv acl perl;
|
||||||
aclSupport = stdenv.isLinux;
|
aclSupport = stdenv.isLinux;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue