Merge pull request #212492 from LeSuisse/awstats-7.9

awstats: 7.8 -> 7.9
This commit is contained in:
Fabian Affolter 2023-01-25 11:07:25 +01:00 committed by GitHub
commit 323963b74c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,12 +1,16 @@
{ lib, fetchurl, perlPackages, jdk }:
{ lib
, fetchurl
, perlPackages
, jdk
}:
perlPackages.buildPerlPackage rec {
pname = "awstats";
version = "7.8";
version = "7.9";
src = fetchurl {
url = "mirror://sourceforge/awstats/${pname}-${version}.tar.gz";
sha256 = "1f6l0hd01jmz7hpg0py8qixxiq50n8gl37iypayskxmy05z8craa";
sha256 = "sha256-YVF47TE9NDFfFaUi2xpdEsqcOV43hbsGKAq/+V2aBUY=";
};
postPatch = ''
@ -15,6 +19,7 @@ perlPackages.buildPerlPackage rec {
'';
outputs = [ "bin" "out" "doc" ]; # bin just links the user-run executable
propagatedBuildOutputs = [ ]; # otherwise out propagates bin -> cycle
buildInputs = with perlPackages; [ ]; # plugins will need some
@ -53,10 +58,10 @@ perlPackages.buildPerlPackage rec {
'';
meta = with lib; {
changelog = "https://www.awstats.org/docs/awstats_changelog.txt";
description = "Real-time logfile analyzer to get advanced statistics";
homepage = "https://awstats.org";
license = licenses.gpl3Plus;
platforms = platforms.unix;
};
}