2009-09-08 09:29:40 +01:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-07-13 20:41:48 +01:00
|
|
|
name = "acct-6.6.4";
|
2009-09-08 09:29:40 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/acct/${name}.tar.gz";
|
2017-07-13 20:41:48 +01:00
|
|
|
sha256 = "0gv6m8giazshvgpvwbng98chpas09myyfw1zr2y7hqxib0mvy5ac";
|
2009-09-08 09:29:40 +01:00
|
|
|
};
|
|
|
|
|
2010-02-11 14:48:34 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2014-11-14 11:15:08 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-09-08 09:29:40 +01:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2014-11-14 11:15:08 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2009-09-08 09:29:40 +01:00
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/acct/;
|
|
|
|
|
2014-11-14 11:15:08 +00:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-01 21:12:31 +01:00
|
|
|
platforms = platforms.linux;
|
2009-09-08 09:29:40 +01:00
|
|
|
};
|
|
|
|
}
|