nixpkgs/pkgs/tools/networking/davix/default.nix

30 lines
851 B
Nix
Raw Normal View History

2015-06-01 09:05:53 +01:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, openssl, libxml2, boost }:
stdenv.mkDerivation rec {
2016-09-21 18:35:50 +01:00
name = "davix-0.6.4";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ stdenv cmake openssl libxml2 boost ];
2015-06-01 09:05:53 +01:00
src = fetchFromGitHub {
owner = "cern-it-sdc-id";
repo = "davix";
2016-09-21 18:35:50 +01:00
rev = "R_0_6_4";
sha256 = "10hg7rs6aams96d4ghldgkrrnikskdpmn8vy6hj5j0s17a2yms6q";
2015-06-01 09:05:53 +01:00
};
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;
};
}