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

26 lines
899 B
Nix
Raw Normal View History

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