depot/third_party/nixpkgs/pkgs/tools/misc/debianutils/default.nix
Default email bb584b27e9 Project import generated by Copybara.
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
2022-04-15 03:41:22 +02:00

24 lines
870 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "debianutils";
version = "5.7";
src = fetchurl {
url = "mirror://debian/pool/main/d/${pname}/${pname}_${version}.orig.tar.gz";
sha256 = "sha256-J+yeDn5E3Iq2EapXYzBHG6ywfkSR/+zw06ppCckvkCI=";
};
meta = with lib; {
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.
The specific utilities included are: add-shell installkernel ischroot remove-shell run-parts savelog tempfile which
'';
downloadPage = "https://packages.debian.org/sid/debianutils";
license = with licenses; [ gpl2Plus publicDomain smail ];
maintainers = [];
platforms = platforms.all;
};
}