mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
acct: update from 6.6.1 to 6.6.2 and adopt it
This commit is contained in:
parent
3d8e94bc8e
commit
18ffe551e8
|
@ -1,16 +1,16 @@
|
||||||
{ fetchurl, stdenv }:
|
{ fetchurl, stdenv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "acct-6.6.1";
|
name = "acct-6.6.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/acct/${name}.tar.gz";
|
url = "mirror://gnu/acct/${name}.tar.gz";
|
||||||
sha256 = "1jzz601cavml7894fjalw661gz28ia35002inw990agr3rhiaiam";
|
sha256 = "0081hzkcxw9aslpsakridj15m0wbnkdhm210fzbg021vi4pppm4f";
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "GNU Accounting Utilities, login and process accounting utilities";
|
description = "GNU Accounting Utilities, login and process accounting utilities";
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
@ -20,11 +20,11 @@ stdenv.mkDerivation rec {
|
||||||
execution statistics.
|
execution statistics.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
license = stdenv.lib.licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
|
||||||
homepage = http://www.gnu.org/software/acct/;
|
homepage = http://www.gnu.org/software/acct/;
|
||||||
|
|
||||||
maintainers = [ ];
|
maintainers = with maintainers; [ pSub ];
|
||||||
platforms = with stdenv.lib.platforms; allBut cygwin;
|
platforms = with platforms; allBut cygwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue