summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorMichael Fellinger <m.fellinger@gmail.com>2014-08-28 14:16:11 +0200
committerMichael Fellinger <m.fellinger@gmail.com>2014-08-28 14:16:11 +0200
commite07b5c95af31c5ef970097dc160562c1439caf25 (patch)
tree6f23c20f8afbd5aa8b8d106136759c8714c117dc /pkgs/tools/system
parentce16840c683074962165f309b83769dd3b2f7b66 (diff)
downloadnixlib-e07b5c95af31c5ef970097dc160562c1439caf25.tar
nixlib-e07b5c95af31c5ef970097dc160562c1439caf25.tar.gz
nixlib-e07b5c95af31c5ef970097dc160562c1439caf25.tar.bz2
nixlib-e07b5c95af31c5ef970097dc160562c1439caf25.tar.lz
nixlib-e07b5c95af31c5ef970097dc160562c1439caf25.tar.xz
nixlib-e07b5c95af31c5ef970097dc160562c1439caf25.tar.zst
nixlib-e07b5c95af31c5ef970097dc160562c1439caf25.zip
Add di package
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/di/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/tools/system/di/default.nix b/pkgs/tools/system/di/default.nix
new file mode 100644
index 000000000000..dc15ce13bccb
--- /dev/null
+++ b/pkgs/tools/system/di/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "di-4.35";
+
+  src = fetchurl {
+    url = "http://gentoo.com/di/${name}.tar.gz";
+    sha256 = "1lkiggvdm6wi14xy8845w6mqqr50j2q7g0i2rdcs7qw5gb7gmprc";
+  };
+
+  makeFlags = "INSTALL_DIR=$(out)";
+
+  meta = with stdenv.lib; {
+    description = "A disk information utility, displaying everything (and more) that your 'df' command does";
+    homepage = http://www.gentoo.com/di/;
+    license = licenses.zlib;
+    maintainers = with maintainers; [ manveru ];
+    platforms = platforms.all;
+  };
+}