From 18ffe551e833ef4a391127f2b7c97b6cbb2ac187 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Fri, 14 Nov 2014 12:15:08 +0100 Subject: [PATCH] acct: update from 6.6.1 to 6.6.2 and adopt it --- pkgs/tools/system/acct/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/system/acct/default.nix b/pkgs/tools/system/acct/default.nix index 0bea6bec3547..c99d20d7953e 100644 --- a/pkgs/tools/system/acct/default.nix +++ b/pkgs/tools/system/acct/default.nix @@ -1,16 +1,16 @@ { fetchurl, stdenv }: stdenv.mkDerivation rec { - name = "acct-6.6.1"; + name = "acct-6.6.2"; src = fetchurl { url = "mirror://gnu/acct/${name}.tar.gz"; - sha256 = "1jzz601cavml7894fjalw661gz28ia35002inw990agr3rhiaiam"; + sha256 = "0081hzkcxw9aslpsakridj15m0wbnkdhm210fzbg021vi4pppm4f"; }; doCheck = true; - meta = { + meta = with stdenv.lib; { description = "GNU Accounting Utilities, login and process accounting utilities"; longDescription = '' @@ -20,11 +20,11 @@ stdenv.mkDerivation rec { execution statistics. ''; - license = stdenv.lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; homepage = http://www.gnu.org/software/acct/; - maintainers = [ ]; - platforms = with stdenv.lib.platforms; allBut cygwin; + maintainers = with maintainers; [ pSub ]; + platforms = with platforms; allBut cygwin; }; }