about summary refs log tree commit diff
path: root/pkgs/tools/system/acct/default.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-09-08 08:29:40 +0000
committerLudovic Courtès <ludo@gnu.org>2009-09-08 08:29:40 +0000
commitd185972f2217d163b1f7f127d2b766bb8be90650 (patch)
tree63241f96c52002afbd99d34a1776828754f4a619 /pkgs/tools/system/acct/default.nix
parent26bd10a89217829bee3128ab8d7f4d8b3c6f6763 (diff)
downloadnixlib-d185972f2217d163b1f7f127d2b766bb8be90650.tar
nixlib-d185972f2217d163b1f7f127d2b766bb8be90650.tar.gz
nixlib-d185972f2217d163b1f7f127d2b766bb8be90650.tar.bz2
nixlib-d185972f2217d163b1f7f127d2b766bb8be90650.tar.lz
nixlib-d185972f2217d163b1f7f127d2b766bb8be90650.tar.xz
nixlib-d185972f2217d163b1f7f127d2b766bb8be90650.tar.zst
nixlib-d185972f2217d163b1f7f127d2b766bb8be90650.zip
Add GNU Accounting Utilities.
svn path=/nixpkgs/trunk/; revision=16981
Diffstat (limited to 'pkgs/tools/system/acct/default.nix')
-rw-r--r--pkgs/tools/system/acct/default.nix27
1 files changed, 27 insertions, 0 deletions
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 ];
+  };
+}