Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 24 lines 889 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 version = "4.8.4"; 5 name = "debianutils-${version}"; 6 7 src = fetchurl { 8 url = "mirror://debian/pool/main/d/debianutils/debianutils_${version}.tar.xz"; 9 sha256 = "1chypq3dbkgvl16lgzdvqvlr7cdm3814nqmp8ch8j7x6mscsnqf0"; 10 }; 11 12 meta = { 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. 16 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 stdenv.lib.licenses; [ gpl2Plus publicDomain smail ]; 21 maintainers = []; 22 platforms = stdenv.lib.platforms.all; 23 }; 24}