From d185972f2217d163b1f7f127d2b766bb8be90650 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 8 Sep 2009 08:29:40 +0000 Subject: [PATCH] Add GNU Accounting Utilities. svn path=/nixpkgs/trunk/; revision=16981 --- pkgs/tools/system/acct/default.nix | 27 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/tools/system/acct/default.nix diff --git a/pkgs/tools/system/acct/default.nix b/pkgs/tools/system/acct/default.nix new file mode 100644 index 000000000000..d616b35ae606 --- /dev/null +++ b/pkgs/tools/system/acct/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4022852b83a9..34a14be1c635 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -403,6 +403,10 @@ let ### TOOLS + acct = import ../tools/system/acct { + inherit fetchurl stdenv; + }; + aefs = import ../tools/security/aefs { inherit fetchurl stdenv fuse; };