about summary refs log tree commit diff
path: root/pkgs/tools/misc/debianutils
diff options
context:
space:
mode:
authorpngwjpgh <pngwjpgh@users.noreply.github.com>2017-01-09 06:41:06 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2017-01-09 06:41:06 +0100
commit071481ca7dbfbca2c567e6f0b7d202bfcd42837e (patch)
tree68e0ec0fc7e97329eda1808e52b1215ee69bcc1f /pkgs/tools/misc/debianutils
parenta878365b77e2bad4f11731072c3d2b79d1b40b04 (diff)
downloadnixlib-071481ca7dbfbca2c567e6f0b7d202bfcd42837e.tar
nixlib-071481ca7dbfbca2c567e6f0b7d202bfcd42837e.tar.gz
nixlib-071481ca7dbfbca2c567e6f0b7d202bfcd42837e.tar.bz2
nixlib-071481ca7dbfbca2c567e6f0b7d202bfcd42837e.tar.lz
nixlib-071481ca7dbfbca2c567e6f0b7d202bfcd42837e.tar.xz
nixlib-071481ca7dbfbca2c567e6f0b7d202bfcd42837e.tar.zst
nixlib-071481ca7dbfbca2c567e6f0b7d202bfcd42837e.zip
debianutils: init at 4.8.1 (#21739)
Diffstat (limited to 'pkgs/tools/misc/debianutils')
-rw-r--r--pkgs/tools/misc/debianutils/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/tools/misc/debianutils/default.nix b/pkgs/tools/misc/debianutils/default.nix
new file mode 100644
index 000000000000..e22539827886
--- /dev/null
+++ b/pkgs/tools/misc/debianutils/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl }:
+
+let
+  checksums = {
+    "4.8.1" = "09phylg8ih1crgxjadkdb8idbpj9ap62a7cbh8qdx2gyvh5mqf9c";
+  };
+in stdenv.mkDerivation rec {
+  version = "4.8.1";
+  name = "debianutils-${version}";
+
+  src = fetchurl {
+    url = "mirror://debian/pool/main/d/debianutils/debianutils_${version}.tar.xz";
+    sha256 = checksums."${version}";
+  };
+
+  meta = {
+    description = "Miscellaneous utilities specific to Debian";
+    longDescription = ''
+       This package provides a number of small utilities which are used primarily by the installation scripts of Debian packages, although you may use them directly.
+
+       The specific utilities included are: add-shell installkernel ischroot remove-shell run-parts savelog tempfile which 
+    '';
+    downloadPage = https://packages.debian.org/sid/debianutils;
+    license = with stdenv.lib.licenses; [ gpl2Plus publicDomain smail ];
+    maintainers = [];
+    platforms = stdenv.lib.platforms.all;
+  };
+}