Add GNU Accounting Utilities.
svn path=/nixpkgs/trunk/; revision=16981
This commit is contained in:
parent
26bd10a892
commit
d185972f22
27
pkgs/tools/system/acct/default.nix
Normal file
27
pkgs/tools/system/acct/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ fetchurl, stdenv }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "acct-6.5";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://gnu/acct/${name}.tar.gz";
|
||||||
|
sha256 = "0cw0id32mw9sy6950g38yi34wn1bryrdsklh23djlqmb1imbqlji";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -403,6 +403,10 @@ let
|
|||||||
### TOOLS
|
### TOOLS
|
||||||
|
|
||||||
|
|
||||||
|
acct = import ../tools/system/acct {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
aefs = import ../tools/security/aefs {
|
aefs = import ../tools/security/aefs {
|
||||||
inherit fetchurl stdenv fuse;
|
inherit fetchurl stdenv fuse;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user