nixpkgs/pkgs/by-name/ac/acct/package.nix
Guy Chronister 33c8949e5f treewide: refactor meta section part 2
adapta-gtk-theme: remove maintainers.

Co-authored-by: Shawn8901 <shawn8901@googlemail.com>
2025-06-23 12:46:23 +00:00

36 lines
838 B
Nix

{
fetchurl,
lib,
stdenv,
}:
stdenv.mkDerivation rec {
pname = "acct";
version = "6.6.4";
src = fetchurl {
url = "mirror://gnu/acct/acct-${version}.tar.gz";
sha256 = "0gv6m8giazshvgpvwbng98chpas09myyfw1zr2y7hqxib0mvy5ac";
};
doCheck = true;
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;
};
}