2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2017-01-09 06:41:06 +01:00
|
|
|
|
2017-08-24 20:15:03 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-07-12 19:02:06 +02:00
|
|
|
pname = "debianutils";
|
2022-04-05 17:39:30 +02:00
|
|
|
version = "5.7";
|
2017-01-09 06:41:06 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-04-05 17:39:30 +02:00
|
|
|
url = "mirror://debian/pool/main/d/${pname}/${pname}_${version}.orig.tar.gz";
|
|
|
|
sha256 = "sha256-J+yeDn5E3Iq2EapXYzBHG6ywfkSR/+zw06ppCckvkCI=";
|
2017-01-09 06:41:06 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with 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;
|
2017-01-09 06:41:06 +01:00
|
|
|
};
|
|
|
|
}
|