Files
nixpkgs/pkgs/by-name/ac/acct/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

44 lines
1.1 KiB
Nix

{
fetchurl,
lib,
stdenv,
fetchpatch2,
}:
stdenv.mkDerivation rec {
pname = "acct";
version = "6.6.4";
src = fetchurl {
url = "mirror://gnu/acct/acct-${version}.tar.gz";
sha256 = "0gv6m8giazshvgpvwbng98chpas09myyfw1zr2y7hqxib0mvy5ac";
};
doCheck = true;
patches = [
(fetchpatch2 {
url = "https://src.fedoraproject.org/rpms/psacct/raw/rawhide/f/psacct-6.6.4-sprintf-buffer-overflow.patch";
hash = "sha256-l74tLIuhpXj+dIA7uAY9L0qMjQ2SbDdc+vjHMyVouFc=";
})
];
meta = {
description = "GNU Accounting Utilities, login and process accounting utilities";
longDescription = ''
The GNU Accounting Utilities provide login and process accounting
utilities for GNU/Linux and other systems. It is a set of utilities
which reports and summarizes data about user connect times and process
execution statistics.
'';
license = lib.licenses.gpl3Plus;
homepage = "https://www.gnu.org/software/acct/";
maintainers = with lib.maintainers; [ pSub ];
platforms = lib.platforms.linux;
};
}