summary refs log tree commit diff
path: root/pkgs/tools/networking/davix
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-07-15 01:59:13 -0700
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-07-15 17:21:11 +0200
commitb43744b933074157273bd0f9490a46fcb601ee78 (patch)
treebddee3bd20973847b9f61d4bde41714e860465a2 /pkgs/tools/networking/davix
parent50eb1818c85cbf2f23b68f4d93233f609cf8139d (diff)
downloadnixpkgs-b43744b933074157273bd0f9490a46fcb601ee78.tar
nixpkgs-b43744b933074157273bd0f9490a46fcb601ee78.tar.gz
nixpkgs-b43744b933074157273bd0f9490a46fcb601ee78.tar.bz2
nixpkgs-b43744b933074157273bd0f9490a46fcb601ee78.tar.lz
nixpkgs-b43744b933074157273bd0f9490a46fcb601ee78.tar.xz
nixpkgs-b43744b933074157273bd0f9490a46fcb601ee78.tar.zst
nixpkgs-b43744b933074157273bd0f9490a46fcb601ee78.zip
davix: 0.7.3 -> 0.7.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/davix/versions
Diffstat (limited to 'pkgs/tools/networking/davix')
-rw-r--r--pkgs/tools/networking/davix/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/davix/default.nix b/pkgs/tools/networking/davix/default.nix
index e69e012f644..4b16eb406e3 100644
--- a/pkgs/tools/networking/davix/default.nix
+++ b/pkgs/tools/networking/davix/default.nix
@@ -1,17 +1,17 @@
 { stdenv, fetchurl, cmake, pkgconfig, openssl, libxml2, boost, python3, libuuid }:
 
 stdenv.mkDerivation rec {
-  version = "0.7.3";
+  version = "0.7.4";
   name = "davix-${version}";
   nativeBuildInputs = [ cmake pkgconfig python3 ];
   buildInputs = [ openssl libxml2 boost libuuid ];
 
-  # using the url below since the 0.7.3 release did carry a broken CMake file,
+  # using the url below since the 0.7.4 release did carry a broken CMake file,
   # supposedly fixed in the next release
   # https://github.com/cern-fts/davix/issues/40
   src = fetchurl {
     url = "http://grid-deployment.web.cern.ch/grid-deployment/dms/lcgutil/tar/davix/${version}/davix-${version}.tar.gz";
-    sha256 = "12ij7p1ahgvicqmccrvpd0iw1909qmpbc3nk58gdm866f9p2find";
+    sha256 = "1k407ckvsw1w212k3lp2867i0sscnrbigsx79l1sp5ymj3n62aih";
   };