summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-01-24 19:05:35 +0000
committerLudovic Courtès <ludo@gnu.org>2009-01-24 19:05:35 +0000
commit6927ec314e00a2921e2e478025ce1ef8574e4136 (patch)
tree63dd67788f350d891b37a1636c26dfede0744a3b /pkgs/tools
parentc91168a600337076c3ddd7fad9c82b884f5a0b09 (diff)
downloadnixpkgs-6927ec314e00a2921e2e478025ce1ef8574e4136.tar
nixpkgs-6927ec314e00a2921e2e478025ce1ef8574e4136.tar.gz
nixpkgs-6927ec314e00a2921e2e478025ce1ef8574e4136.tar.bz2
nixpkgs-6927ec314e00a2921e2e478025ce1ef8574e4136.tar.lz
nixpkgs-6927ec314e00a2921e2e478025ce1ef8574e4136.tar.xz
nixpkgs-6927ec314e00a2921e2e478025ce1ef8574e4136.tar.zst
nixpkgs-6927ec314e00a2921e2e478025ce1ef8574e4136.zip
GNU Coreutils 7.0.
svn path=/nixpkgs/branches/stdenv-updates/; revision=13829
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix19
1 files changed, 15 insertions, 4 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index 2def6c8d4e8..a1605898661 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -1,11 +1,13 @@
 {stdenv, fetchurl, aclSupport ? false, acl}:
 
-stdenv.mkDerivation {
-  name = "coreutils-6.12";
+stdenv.mkDerivation rec {
+  name = "coreutils-7.0";
   
   src = fetchurl {
-    url = mirror://gnu/coreutils/coreutils-6.12.tar.gz;
-    sha256 = "12pi7i2mxff5jab48pqpwlz2pi0j6sp9p7bgrcl663iiw81zglj9";
+    # Version 7.0 is marked as "beta", which is why it's on `alpha.gnu.org'.
+    # See http://lists.gnu.org/archive/html/bug-coreutils/2008-10/msg00064.html .
+    url = "ftp://alpha.gnu.org/gnu/coreutils/${name}.tar.gz";
+    sha256 = "00cwf8rqbj89ikv8fhdhv26dpc2ghzw1hn48pk1vg3nnmxj55nr7";
   };
 
   buildInputs = stdenv.lib.optional aclSupport acl;
@@ -16,5 +18,14 @@ stdenv.mkDerivation {
   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+";
   };
 }