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

25 lines
891 B
Nix
Raw Normal View History

2017-01-09 05:41:06 +00:00
{ stdenv, fetchurl }:
2017-08-24 18:15:03 +00:00
stdenv.mkDerivation rec {
version = "4.8.6.1";
2017-01-09 05:41:06 +00:00
name = "debianutils-${version}";
src = fetchurl {
url = "mirror://debian/pool/main/d/debianutils/debianutils_${version}.tar.xz";
sha256 = "1vamrgzsfdb2183xgj1qmfzh710iqj2dlbdsl92n3ckqfa51x7q9";
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;
};
}