Files
nixpkgs/pkgs/by-name/de/debianutils/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

56 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitLab,
autoreconfHook,
perl,
po4a,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "debianutils";
version = "5.23.2";
src = fetchFromGitLab {
domain = "salsa.debian.org";
owner = "debian";
repo = "debianutils";
rev = "debian/${finalAttrs.version}";
hash = "sha256-28pl0uua4gX65uZP1td87HfojKLvkjJbo8KPqpgg/0g=";
};
nativeBuildInputs = [
autoreconfHook
perl
po4a
];
strictDeps = true;
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.
The specific utilities included are: add-shell installkernel ischroot
remove-shell run-parts savelog tempfile which
'';
license = with lib.licenses; [
gpl2Plus
publicDomain
smail
];
mainProgram = "ischroot";
maintainers = [ ];
platforms = lib.platforms.all;
};
})