2009-09-08 10:29:40 +02:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-02-12 10:07:19 +01:00
|
|
|
name = "acct-6.5.4";
|
2009-09-08 10:29:40 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/acct/${name}.tar.gz";
|
2010-03-01 13:11:12 +01:00
|
|
|
sha256 = "1fvrv70rnli1q7pn1j10z55f26awh54zwwann0s88yrjvpbzbhka";
|
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/;
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
2009-09-17 12:35:05 +02:00
|
|
|
platforms = stdenv.lib.platforms.allBut "i686-cygwin";
|
2009-09-08 10:29:40 +02:00
|
|
|
};
|
|
|
|
}
|