2009-09-08 10:29:40 +02:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-18 12:40:47 +01:00
|
|
|
name = "acct-6.6.1";
|
2009-09-08 10:29:40 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/acct/${name}.tar.gz";
|
2013-12-18 12:40:47 +01:00
|
|
|
sha256 = "1jzz601cavml7894fjalw661gz28ia35002inw990agr3rhiaiam";
|
2009-09-08 10:29:40 +02:00
|
|
|
};
|
|
|
|
|
2010-02-11 15:48:34 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2009-09-08 10:29:40 +02:00
|
|
|
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 = "GPLv3+";
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/acct/;
|
|
|
|
|
2013-08-16 23:44:33 +02:00
|
|
|
maintainers = [ ];
|
2009-09-17 12:35:05 +02:00
|
|
|
platforms = stdenv.lib.platforms.allBut "i686-cygwin";
|
2009-09-08 10:29:40 +02:00
|
|
|
};
|
|
|
|
}
|