mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
31 lines
804 B
Nix
31 lines
804 B
Nix
{ fetchurl, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "acct-6.6.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/acct/${name}.tar.gz";
|
|
sha256 = "0081hzkcxw9aslpsakridj15m0wbnkdhm210fzbg021vi4pppm4f";
|
|
};
|
|
|
|
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 = http://www.gnu.org/software/acct/;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|