nixpkgs/pkgs/tools/system/acct/default.nix

31 lines
805 B
Nix

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "acct-6.6.4";
src = fetchurl {
url = "mirror://gnu/acct/${name}.tar.gz";
sha256 = "0gv6m8giazshvgpvwbng98chpas09myyfw1zr2y7hqxib0mvy5ac";
};
doCheck = true;
meta = with stdenv.lib; {
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 = licenses.gpl3Plus;
homepage = https://www.gnu.org/software/acct/;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}