mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
8f20c5d3b9
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
25 lines
891 B
Nix
25 lines
891 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "4.8.6.1";
|
|
name = "debianutils-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://debian/pool/main/d/debianutils/debianutils_${version}.tar.xz";
|
|
sha256 = "1vamrgzsfdb2183xgj1qmfzh710iqj2dlbdsl92n3ckqfa51x7q9";
|
|
};
|
|
|
|
meta = {
|
|
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 stdenv.lib.licenses; [ gpl2Plus publicDomain smail ];
|
|
maintainers = [];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|