debianutils: init at 4.8.1 (#21739)

This commit is contained in:
pngwjpgh
2017-01-09 06:41:06 +01:00
committed by Franz Pletz
parent a878365b77
commit 071481ca7d
3 changed files with 36 additions and 0 deletions

View File

@@ -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;
};
}