summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-08 10:04:43 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-08 10:04:43 +0000
commit7cae967c7cb1359f075740492a23f1ba1de8a98e (patch)
tree425ccb5f64c2818b205fc701fc0f0ecf59a6a3bf /pkgs/tools/misc/coreutils
parenta2b2e6542ff521ba46f2026dfcc4afe80fe3b490 (diff)
downloadnixlib-7cae967c7cb1359f075740492a23f1ba1de8a98e.tar
nixlib-7cae967c7cb1359f075740492a23f1ba1de8a98e.tar.gz
nixlib-7cae967c7cb1359f075740492a23f1ba1de8a98e.tar.bz2
nixlib-7cae967c7cb1359f075740492a23f1ba1de8a98e.tar.lz
nixlib-7cae967c7cb1359f075740492a23f1ba1de8a98e.tar.xz
nixlib-7cae967c7cb1359f075740492a23f1ba1de8a98e.tar.zst
nixlib-7cae967c7cb1359f075740492a23f1ba1de8a98e.zip
Removing the coreutils-7.5, which were needed in armv5tel in contrast to
coreutils 7.6, which did not build well. The newer coreutils 8.1 work perfectly,
and we don't need to rely in older versions.


svn path=/nixpkgs/branches/stdenv-updates/; revision=18836
Diffstat (limited to 'pkgs/tools/misc/coreutils')
-rw-r--r--pkgs/tools/misc/coreutils/7.5.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/tools/misc/coreutils/7.5.nix b/pkgs/tools/misc/coreutils/7.5.nix
deleted file mode 100644
index 90223c35483b..000000000000
--- a/pkgs/tools/misc/coreutils/7.5.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{stdenv, fetchurl, aclSupport ? false, acl}:
-
-stdenv.mkDerivation rec {
-  name = "coreutils-7.5";
-
-  src = fetchurl {
-    url = "mirror://gnu/coreutils/${name}.tar.gz";
-    sha256 = "1hf333y85fm0q7f1apx2zjjhivwj620nc8kcifdcm0sg8fwlj7rl";
-  };
-
-  buildInputs = stdenv.lib.optional aclSupport acl;
-
-  meta = {
-    homepage = http://www.gnu.org/software/coreutils/;
-    description = "The basic file, shell and text manipulation utilities of the GNU operating system";
-
-    longDescription = ''
-      The GNU Core Utilities are the basic file, shell and text
-      manipulation utilities of the GNU operating system.  These are
-      the core utilities which are expected to exist on every
-      operating system.
-    '';
-
-    license = "GPLv3+";
-
-    maintainers = [ stdenv.lib.maintainers.ludo ];
-  };
-}