···11-{stdenv, fetchurl, neon, zlib}:
22-33-stdenv.mkDerivation rec {
44- name = "davfs2-1.4.1";
55-66- src = fetchurl {
77- url = "http://www.very-clever.com/download/nongnu/davfs2/${name}.tar.gz";
88- sha256 = "0fqq331rd3ylzfhdsbbj0b2znn3d0js0kxcv3w54dl9g2cs8fqhn";
99- };
1010-1111- buildInputs = [ neon zlib ];
1212- patches = [ ./davfs2-install.patch ];
1313-1414- meta = {
1515- description = "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.";
1616-1717- license = "GPLv3+";
1818- homepage = http://savannah.nongnu.org/projects/davfs2;
1919- };
2020-}
+21
pkgs/tools/filesystems/davfs2/default.nix
···11+{ stdenv, fetchurl, neon, zlib }:
22+33+stdenv.mkDerivation rec {
44+ name = "davfs2-1.4.5";
55+66+ src = fetchurl {
77+ url = "mirror://savannah/davfs2/${name}.tar.gz";
88+ sha256 = "1pkl2braggp2qg4c68dwfv399l9jz7cvi7gkm4xbj6mgvl0cxw18";
99+ };
1010+1111+ buildInputs = [ neon zlib ];
1212+1313+ patches = [ ./davfs2-install.patch ];
1414+1515+ meta = {
1616+ 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.";
1717+1818+ license = "GPLv3+";
1919+ homepage = http://savannah.nongnu.org/projects/davfs2;
2020+ };
2121+}