nixpkgs/pkgs/tools/system/acct/default.nix

31 lines
781 B
Nix
Raw Normal View History

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
2013-12-18 11:40:47 +00:00
name = "acct-6.6.1";
src = fetchurl {
url = "mirror://gnu/acct/${name}.tar.gz";
2013-12-18 11:40:47 +00:00
sha256 = "1jzz601cavml7894fjalw661gz28ia35002inw990agr3rhiaiam";
};
doCheck = true;
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 21:44:33 +00:00
maintainers = [ ];
platforms = stdenv.lib.platforms.allBut "i686-cygwin";
};
}