about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-02-23 00:45:43 +0100
committerGitHub <noreply@github.com>2023-02-23 00:45:43 +0100
commit1b49d3108bd7c868b08eba155a5eaded98487261 (patch)
tree4610975102c710d0869301c13ccb2a2d689a060e /pkgs/tools/security
parentbe95c393404ae17637ed83949b4538f5a6dda659 (diff)
evtx: add changelog to meta
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/evtx/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/security/evtx/default.nix b/pkgs/tools/security/evtx/default.nix
index f236a5d30935c..86cd382576df8 100644
--- a/pkgs/tools/security/evtx/default.nix
+++ b/pkgs/tools/security/evtx/default.nix
@@ -11,7 +11,7 @@ rustPlatform.buildRustPackage rec {
   src = fetchFromGitHub {
     owner = "omerbenamram";
     repo = pname;
-    rev = "v${version}";
+    rev = "refs/tags/v${version}";
     hash = "sha256-aa04Ia11+Ae1amc3JAtYdSWf+f/fenTt0Bny/AauaHo=";
   };
 
@@ -25,6 +25,7 @@ rustPlatform.buildRustPackage rec {
   meta = with lib; {
     description = "Parser for the Windows XML Event Log (EVTX) format";
     homepage = "https://github.com/omerbenamram/evtx";
+    changelog = "https://github.com/omerbenamram/evtx/blob/v${version}/CHANGELOG.md";
     license = with licenses; [ asl20 /* or */ mit ];
     maintainers = with maintainers; [ fab ];
   };