mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
b43744b933
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
32 lines
1.1 KiB
Nix
32 lines
1.1 KiB
Nix
{ stdenv, fetchurl, cmake, pkgconfig, openssl, libxml2, boost, python3, libuuid }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.7.4";
|
|
name = "davix-${version}";
|
|
nativeBuildInputs = [ cmake pkgconfig python3 ];
|
|
buildInputs = [ openssl libxml2 boost libuuid ];
|
|
|
|
# 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 = "1k407ckvsw1w212k3lp2867i0sscnrbigsx79l1sp5ymj3n62aih";
|
|
};
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Toolkit for Http-based file management";
|
|
|
|
longDescription = "Davix is a toolkit designed for file
|
|
operations with Http based protocols (WebDav, Amazon S3, ...).
|
|
Davix provides an API and a set of command line tools";
|
|
|
|
license = licenses.lgpl2Plus;
|
|
homepage = http://dmc.web.cern.ch/projects/davix/home;
|
|
maintainers = [ maintainers.adev ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|
|
|