1{ fetchurl, stdenv }:
2
3stdenv.mkDerivation rec {
4 name = "acct-6.6.2";
5
6 src = fetchurl {
7 url = "mirror://gnu/acct/${name}.tar.gz";
8 sha256 = "0081hzkcxw9aslpsakridj15m0wbnkdhm210fzbg021vi4pppm4f";
9 };
10
11 doCheck = true;
12
13 meta = with stdenv.lib; {
14 description = "GNU Accounting Utilities, login and process accounting utilities";
15
16 longDescription = ''
17 The GNU Accounting Utilities provide login and process accounting
18 utilities for GNU/Linux and other systems. It is a set of utilities
19 which reports and summarizes data about user connect times and process
20 execution statistics.
21 '';
22
23 license = licenses.gpl3Plus;
24
25 homepage = http://www.gnu.org/software/acct/;
26
27 maintainers = with maintainers; [ pSub ];
28 platforms = with platforms; allBut cygwin;
29 };
30}