summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRaghav Sood <r@raghavsood.com>2020-11-23 07:03:23 +0000
committerGitHub <noreply@github.com>2020-11-23 07:03:23 +0000
commit9bbd82d04b9e8dba1cd3eb89c259b56fe846def0 (patch)
tree7b581802e6cf77fae1a7a952db7bc10a42797b85 /pkgs/tools
parent3f1797554476caee11243ba2a86e3bf001c58635 (diff)
parenteecd658af06a93f2af5aa76950fddcac2bde1a9b (diff)
Merge pull request #104167 from RaghavSood/davix/src
davix: fix src
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/davix/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/networking/davix/default.nix b/pkgs/tools/networking/davix/default.nix
index 797791e1c0b9..ca9e7b033c51 100644
--- a/pkgs/tools/networking/davix/default.nix
+++ b/pkgs/tools/networking/davix/default.nix
@@ -6,11 +6,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkgconfig python3 ];
buildInputs = [ openssl libxml2 boost libuuid ];
- # using the url below since the 0.7.6 release did carry a broken CMake file,
- # supposedly fixed in the next release
- # https://github.com/cern-fts/davix/issues/40
+ # using the url below since the github release page states
+ # "please ignore the GitHub-generated tarballs, as they are incomplete"
+ # https://github.com/cern-fts/davix/releases/tag/R_0_7_6
src = fetchurl {
- url = "http://grid-deployment.web.cern.ch/grid-deployment/dms/lcgutil/tar/davix/${version}/davix-${version}.tar.gz";
+ url = "https://github.com/cern-fts/${pname}/releases/download/R_${stdenv.lib.replaceStrings ["."] ["_"] version}/${pname}-${version}.tar.gz";
sha256 = "0wq66spnr616cns72f9dvr2xfvkdvfqqmc6d7dx29fpp57zzvrx2";
};