summary refs log tree commit diff
path: root/pkgs/tools/system/acct/default.nix
blob: 6ec9cc627446bfe90c53881bfc3ee8fa8b3cc6b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ fetchurl, stdenv }:

stdenv.mkDerivation rec {
  name = "acct-6.6.3";

  src = fetchurl {
    url = "mirror://gnu/acct/${name}.tar.gz";
    sha256 = "14x0zklwlg7cc7amlyzffqr8az3fqj1h9dyj0hvl1kpi7cr7kbjy";
  };

  doCheck = true;

  meta = with stdenv.lib; {
    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 = licenses.gpl3Plus;

    homepage = http://www.gnu.org/software/acct/;

    maintainers = with maintainers; [ pSub ];
    platforms = platforms.linux;
  };
}