nixpkgs/pkgs/tools/misc/debianutils/default.nix

25 lines
869 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2017-01-09 05:41:06 +00:00
2017-08-24 18:15:03 +00:00
stdenv.mkDerivation rec {
2019-07-12 17:02:06 +00:00
pname = "debianutils";
2020-10-24 16:21:46 +00:00
version = "4.11.2";
2017-01-09 05:41:06 +00:00
src = fetchurl {
2019-07-12 17:02:06 +00:00
url = "mirror://debian/pool/main/d/${pname}/${pname}_${version}.tar.xz";
2020-10-24 16:21:46 +00:00
sha256 = "1pjh2s5f8qp8jaky2x08yvf125np0s48zb2z6f3h6x4vf20hws1v";
2017-01-09 05:41:06 +00:00
};
meta = with lib; {
2017-01-09 05:41:06 +00: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 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";
2019-07-12 17:02:06 +00:00
license = with licenses; [ gpl2Plus publicDomain smail ];
2017-01-09 05:41:06 +00:00
maintainers = [];
2019-07-12 17:02:06 +00:00
platforms = platforms.all;
2017-01-09 05:41:06 +00:00
};
}