Merge pull request #57018 from andir/davix

davix: 0.6.4 -> 0.7.2
This commit is contained in:
Andreas Rammhold 2019-03-18 18:54:03 +01:00 committed by GitHub
commit f5c63cbb54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,17 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, openssl, libxml2, boost }: { stdenv, fetchurl, cmake, pkgconfig, openssl, libxml2, boost, python3, libuuid }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "davix-0.6.4"; version = "0.7.2";
nativeBuildInputs = [ pkgconfig ]; name = "davix-${version}";
buildInputs = [ stdenv cmake openssl libxml2 boost ]; nativeBuildInputs = [ cmake pkgconfig python3 ];
buildInputs = [ openssl libxml2 boost libuuid ];
src = fetchFromGitHub { # using the url below since the 0.7.2 release did carry a broken CMake file,
owner = "cern-it-sdc-id"; # supposedly fixed in the next release
repo = "davix"; # https://github.com/cern-fts/davix/issues/40
rev = "R_0_6_4"; src = fetchurl {
sha256 = "10hg7rs6aams96d4ghldgkrrnikskdpmn8vy6hj5j0s17a2yms6q"; url = "http://grid-deployment.web.cern.ch/grid-deployment/dms/lcgutil/tar/davix/${version}/davix-${version}.tar.gz";
sha256 = "1w1q7r6r5j5f23ra4qhx3x29w9z9xal23c2azazpfmcz88hkkmhz";
}; };