about summary refs log tree commit diff
path: root/pkgs/tools/system/awstats
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-01-25 09:44:17 +0100
committerGitHub <noreply@github.com>2023-01-25 09:44:17 +0100
commit5a2d98d6b2d1a78d17acd0213ac2b84a4072b7a6 (patch)
treefd930a656b0219b2a97866fcccc44c2004f082f0 /pkgs/tools/system/awstats
parent50b8f8fa2b8490f77d2db4c438f14bd2881a7f5e (diff)
awstats: add changelog to meta
Diffstat (limited to 'pkgs/tools/system/awstats')
-rw-r--r--pkgs/tools/system/awstats/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/tools/system/awstats/default.nix b/pkgs/tools/system/awstats/default.nix
index 83625e305114c..21b76adf3e596 100644
--- a/pkgs/tools/system/awstats/default.nix
+++ b/pkgs/tools/system/awstats/default.nix
@@ -1,4 +1,8 @@
-{ lib, fetchurl, perlPackages, jdk }:
+{ lib
+, fetchurl
+, perlPackages
+, jdk
+}:
 
 perlPackages.buildPerlPackage rec {
   pname = "awstats";
@@ -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;
   };
 }
-