summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils/7.5.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/coreutils/7.5.nix')
-rw-r--r--pkgs/tools/misc/coreutils/7.5.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/tools/misc/coreutils/7.5.nix b/pkgs/tools/misc/coreutils/7.5.nix
new file mode 100644
index 000000000000..90223c35483b
--- /dev/null
+++ b/pkgs/tools/misc/coreutils/7.5.nix
@@ -0,0 +1,28 @@
+{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 ];
+  };
+}