summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2022-02-15 14:53:15 -0800
committerGitHub <noreply@github.com>2022-02-15 23:53:15 +0100
commite77933024d340885de3a4d55aa4f6d2de47dbabf (patch)
treec278d488de08424d70bcf6ec461d358c4e3eb852 /pkgs/tools/security
parent7b5c0cb607f2c001ff28d1a6309b1f8f5e248501 (diff)
downloadnixpkgs-e77933024d340885de3a4d55aa4f6d2de47dbabf.tar
nixpkgs-e77933024d340885de3a4d55aa4f6d2de47dbabf.tar.gz
nixpkgs-e77933024d340885de3a4d55aa4f6d2de47dbabf.tar.bz2
nixpkgs-e77933024d340885de3a4d55aa4f6d2de47dbabf.tar.lz
nixpkgs-e77933024d340885de3a4d55aa4f6d2de47dbabf.tar.xz
nixpkgs-e77933024d340885de3a4d55aa4f6d2de47dbabf.tar.zst
nixpkgs-e77933024d340885de3a4d55aa4f6d2de47dbabf.zip
haveged: 1.9.15 -> 1.9.17
* haveged: 1.9.15 -> 1.9.17 (#159495)

add meta.changelog URL
and use SPDX 3.0 license identifier

* haveged: exclude Darwin platforms

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/haveged/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/security/haveged/default.nix b/pkgs/tools/security/haveged/default.nix
index 89e07936481..2386bb90d1a 100644
--- a/pkgs/tools/security/haveged/default.nix
+++ b/pkgs/tools/security/haveged/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "haveged";
-  version = "1.9.15";
+  version = "1.9.17";
 
   src = fetchFromGitHub {
     owner = "jirka-h";
     repo = "haveged";
     rev = "v${version}";
-    sha256 = "sha256-bU+/lRx0RAqHheNQ9CWT/V0oZnZd0W9EHhhX3RRIZ/0=";
+    sha256 = "sha256-uVl+TZVMsf+9aRATQndYMK4l4JfOBvstd1O2nTHyMYU=";
   };
 
   strictDeps = true;
@@ -34,8 +34,10 @@ stdenv.mkDerivation rec {
       the barriers to using haveged for other tasks.
     '';
     homepage = "https://github.com/jirka-h/haveged";
-    license = licenses.gpl3;
+    changelog = "https://raw.githubusercontent.com/jirka-h/haveged/v${version}/ChangeLog";
+    license = licenses.gpl3Plus;
     maintainers = with maintainers; [ domenkozar ];
     platforms = platforms.unix;
+    badPlatforms = platforms.darwin; # fails to build since v1.9.15
   };
 }