linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / debianutils / default.nix
blobd9fc2a4071246617e068945a3d20d620030c1af9
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "debianutils";
5   version = "4.11.2";
7   src = fetchurl {
8     url = "mirror://debian/pool/main/d/${pname}/${pname}_${version}.tar.xz";
9     sha256 = "1pjh2s5f8qp8jaky2x08yvf125np0s48zb2z6f3h6x4vf20hws1v";
10   };
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.
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     broken = stdenv.isDarwin;
24   };