2017-01-09 05:41:06 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2017-08-24 18:15:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-01-27 10:13:25 +00:00
|
|
|
version = "4.8.4";
|
2017-01-09 05:41:06 +00:00
|
|
|
name = "debianutils-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://debian/pool/main/d/debianutils/debianutils_${version}.tar.xz";
|
2018-01-27 10:13:25 +00:00
|
|
|
sha256 = "1chypq3dbkgvl16lgzdvqvlr7cdm3814nqmp8ch8j7x6mscsnqf0";
|
2017-01-09 05:41:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
2018-01-27 10:13:25 +00:00
|
|
|
The specific utilities included are: add-shell installkernel ischroot remove-shell run-parts savelog tempfile which
|
2017-01-09 05:41:06 +00:00
|
|
|
'';
|
|
|
|
downloadPage = https://packages.debian.org/sid/debianutils;
|
|
|
|
license = with stdenv.lib.licenses; [ gpl2Plus publicDomain smail ];
|
|
|
|
maintainers = [];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|