2013-02-21 12:00:11 +01:00
|
|
|
{ stdenv, fetchurl, neon, zlib }:
|
2009-12-08 14:08:27 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-09-04 00:45:17 +02:00
|
|
|
name = "davfs2-1.4.7";
|
2009-12-08 14:08:27 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://savannah/davfs2/${name}.tar.gz";
|
2012-09-04 00:45:17 +02:00
|
|
|
sha256 = "0i7hrwlfzisb4l2mza1kjj9q9xxixggjplsjm339zl7828mfxh2h";
|
2009-12-08 14:08:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ neon zlib ];
|
2012-09-04 00:45:17 +02:00
|
|
|
|
2013-02-21 12:00:11 +01:00
|
|
|
patches = [ ./davfs2-install.patch ./isdir.patch ./fix-sysconfdir.patch ];
|
|
|
|
|
|
|
|
configureFlags = "--sysconfdir=/etc";
|
2009-12-08 14:08:27 +01:00
|
|
|
|
|
|
|
meta = {
|
2013-02-21 12:00:11 +01:00
|
|
|
homepage = "http://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.
|
|
|
|
'';
|
2009-12-08 14:08:27 +01:00
|
|
|
|
2013-02-21 12:00:11 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2009-12-08 14:08:27 +01:00
|
|
|
};
|
|
|
|
}
|