2017-01-09 06:41:06 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2017-08-24 20:15:03 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-07-12 19:02:06 +02:00
|
|
|
pname = "debianutils";
|
2020-05-25 16:10:12 +02:00
|
|
|
version = "4.10";
|
2017-01-09 06:41:06 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-07-12 19:02:06 +02:00
|
|
|
url = "mirror://debian/pool/main/d/${pname}/${pname}_${version}.tar.xz";
|
2020-05-25 16:10:12 +02:00
|
|
|
sha256 = "1mj2hrwm8zr3814yig1f78hzflgih93hmy3dsyx6k0fdcfjkjvmx";
|
2017-01-09 06:41:06 +01:00
|
|
|
};
|
|
|
|
|
2019-07-12 19:02:06 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-01-09 06:41:06 +01:00
|
|
|
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 11:13:25 +01:00
|
|
|
The specific utilities included are: add-shell installkernel ischroot remove-shell run-parts savelog tempfile which
|
2017-01-09 06:41:06 +01:00
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
downloadPage = "https://packages.debian.org/sid/debianutils";
|
2019-07-12 19:02:06 +02:00
|
|
|
license = with licenses; [ gpl2Plus publicDomain smail ];
|
2017-01-09 06:41:06 +01:00
|
|
|
maintainers = [];
|
2019-07-12 19:02:06 +02:00
|
|
|
platforms = platforms.all;
|
2019-11-01 10:17:05 +01:00
|
|
|
broken = stdenv.isDarwin;
|
2017-01-09 06:41:06 +01:00
|
|
|
};
|
|
|
|
}
|