5ce453b66e
svn path=/nixpkgs/branches/stdenv-updates/; revision=25083
31 lines
809 B
Nix
31 lines
809 B
Nix
{ fetchurl, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "acct-6.5.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/acct/${name}.tar.gz";
|
|
sha256 = "1mbg18acrva5m7kxc9pzhaknsqm4r90nrp7ax9jkm9wjkrxwhqs1";
|
|
};
|
|
|
|
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/;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
platforms = stdenv.lib.platforms.allBut "i686-cygwin";
|
|
};
|
|
}
|