1{ lib, stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 pname = "debianutils";
5 version = "5.7";
6
7 src = fetchurl {
8 url = "mirror://debian/pool/main/d/${pname}/${pname}_${version}.orig.tar.gz";
9 sha256 = "sha256-J+yeDn5E3Iq2EapXYzBHG6ywfkSR/+zw06ppCckvkCI=";
10 };
11
12 meta = with lib; {
13 description = "Miscellaneous utilities specific to Debian";
14 longDescription = ''
15 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.
16
17 The specific utilities included are: add-shell installkernel ischroot remove-shell run-parts savelog tempfile which
18 '';
19 downloadPage = "https://packages.debian.org/sid/debianutils";
20 license = with licenses; [ gpl2Plus publicDomain smail ];
21 maintainers = [];
22 platforms = platforms.all;
23 };
24}