nixpkgs/pkgs/tools/misc/debianutils/default.nix
R. RyanTM 8cc4edde3e debianutils: 4.8.6.2 -> 4.8.6.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/debianutils/versions
2019-08-04 22:04:08 +09:00

25 lines
870 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "debianutils";
version = "4.8.6.3";
src = fetchurl {
url = "mirror://debian/pool/main/d/${pname}/${pname}_${version}.tar.xz";
sha256 = "08g2gdm6n66w5m8qwm4f48wzgs3ymkpki6dg01nwzwbdzhxdxirc";
};
meta = with stdenv.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;
};
}