debianutils: refactor

- one parameter per line
- use rec-less, overlay-style overridable recursive attributes (in effect since
  https://github.com/NixOS/nixpkgs/pull/119942)
- remove references to pname
- use hash instead of sha256
- multiple outputs
- remove with nesting (following
  https://nix.dev/anti-patterns/language#with-attrset-expression)
- format meta
- add myself as maintainer
This commit is contained in:
Anderson Torres 2023-08-15 07:59:31 -03:00
parent c88a504bb9
commit e4c189435c

View file

@ -1,24 +1,33 @@
{ lib, stdenv, fetchurl }:
{ lib
, stdenv
, fetchurl
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "debianutils";
version = "5.8";
src = fetchurl {
url = "mirror://debian/pool/main/d/${pname}/${pname}_${version}.orig.tar.gz";
sha256 = "sha256-WwhtJ+uQY95NdGdg0PrrQNlGT7hV/IqOf7k7A+/OxiI=";
url = "mirror://debian/pool/main/d/debianutils/debianutils_${finalAttrs.version}.orig.tar.gz";
hash = "sha256-WwhtJ+uQY95NdGdg0PrrQNlGT7hV/IqOf7k7A+/OxiI=";
};
meta = with lib; {
outputs = [ "out" "man" ];
meta = {
homepage = "https://packages.debian.org/sid/debianutils";
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.
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
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;
license = with lib.licenses; [ gpl2Plus publicDomain smail ];
mainProgram = "ischroot";
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.all;
};
}
})