summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-01-09 08:41:35 +0100
committerGitHub <noreply@github.com>2023-01-09 08:41:35 +0100
commitf63c98e3ed67b3fdedd4487a2032aa9cc6301d0a (patch)
treec75e1ed58e077f687e9700dd7cf7ec2a5d24005b /pkgs
parentb94139062d104fde71034ffe46a481452f950f8e (diff)
parentfb22b42702ebab6c5d7d78a96f18c96339ddb10e (diff)
Merge pull request #209654 from fabaff/siege-bump
siege: 4.1.5 -> 4.1.6 
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/networking/siege/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/networking/siege/default.nix b/pkgs/tools/networking/siege/default.nix
index b8b70d861e811..6a1ce2f4a028a 100644
--- a/pkgs/tools/networking/siege/default.nix
+++ b/pkgs/tools/networking/siege/default.nix
@@ -7,11 +7,11 @@
 
 stdenv.mkDerivation rec {
   pname = "siege";
-  version = "4.1.5";
+  version = "4.1.6";
 
   src = fetchurl {
     url = "http://download.joedog.org/siege/${pname}-${version}.tar.gz";
-    hash = "sha256-B235/Nt/Y8Rtb2YazCzMhAWTeunK5JCrip14qdLnuMs=";
+    hash = "sha256-MJ1Ym/yBm28V0uXoWRs8DG9pNiT1Bg7qwGek2ad1fek=";
   };
 
   NIX_LDFLAGS = lib.optionalString stdenv.isLinux [
@@ -35,6 +35,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "HTTP load tester";
     homepage = "https://www.joedog.org/siege-home/";
+    changelog = "https://github.com/JoeDog/siege/blob/v${version}/ChangeLog";
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ raskin ];
     platforms = platforms.unix;