2009-09-08 08:29:40 +00:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-04-24 13:51:09 +00:00
|
|
|
name = "acct-6.6.3";
|
2009-09-08 08:29:40 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/acct/${name}.tar.gz";
|
2017-04-24 13:51:09 +00:00
|
|
|
sha256 = "14x0zklwlg7cc7amlyzffqr8az3fqj1h9dyj0hvl1kpi7cr7kbjy";
|
2009-09-08 08:29:40 +00: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 08:29:40 +00: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 08:29:40 +00:00
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/acct/;
|
|
|
|
|
2014-11-14 11:15:08 +00:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-01 20:12:31 +00:00
|
|
|
platforms = platforms.linux;
|
2009-09-08 08:29:40 +00:00
|
|
|
};
|
|
|
|
}
|