awstats: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-01-25 09:44:17 +01:00 committed by GitHub
parent 50b8f8fa2b
commit 5a2d98d6b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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