nixpkgs/pkgs/tools/filesystems/davfs2/default.nix

35 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, neon, zlib }:
stdenv.mkDerivation rec {
2020-01-06 08:57:30 +00:00
name = "davfs2-1.5.6";
src = fetchurl {
url = "mirror://savannah/davfs2/${name}.tar.gz";
2020-01-06 08:57:30 +00:00
sha256 = "00fqadhmhi2bmdar5a48nicmjcagnmaj9wgsvjr6cffmrz6pcx21";
};
buildInputs = [ neon zlib ];
patches = [ ./isdir.patch ./fix-sysconfdir.patch ];
2018-07-25 21:44:21 +00:00
configureFlags = [ "--sysconfdir=/etc" ];
makeFlags = ["sbindir=$(out)/sbin" "ssbindir=$(out)/sbin"];
meta = {
2018-12-01 17:32:32 +00:00
homepage = https://savannah.nongnu.org/projects/davfs2;
description = "Mount WebDAV shares like a typical filesystem";
license = stdenv.lib.licenses.gpl3Plus;
longDescription = ''
Web Distributed Authoring and Versioning (WebDAV), an extension to
the HTTP-protocol, allows authoring of resources on a remote web
server. davfs2 provides the ability to access such resources like
a typical filesystem, allowing for use by standard applications
with no built-in support for WebDAV.
'';
platforms = stdenv.lib.platforms.linux;
};
}