summary refs log tree commit diff
path: root/pkgs/tools/filesystems/davfs2/default.nix
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2016-03-31 14:14:32 +0200
committerMichael Raskin <7c6f434c@mail.ru>2016-03-31 14:14:40 +0200
commitcdb2bc77c43ac3bc0a4a5b4783e407b1b40a78b6 (patch)
treef5399604169bbf39d9ce43928496daa1e21c4bb1 /pkgs/tools/filesystems/davfs2/default.nix
parentd2c00001f8a5c99cab09992d104f795025d37fce (diff)
downloadnixpkgs-cdb2bc77c43ac3bc0a4a5b4783e407b1b40a78b6.tar
nixpkgs-cdb2bc77c43ac3bc0a4a5b4783e407b1b40a78b6.tar.gz
nixpkgs-cdb2bc77c43ac3bc0a4a5b4783e407b1b40a78b6.tar.bz2
nixpkgs-cdb2bc77c43ac3bc0a4a5b4783e407b1b40a78b6.tar.lz
nixpkgs-cdb2bc77c43ac3bc0a4a5b4783e407b1b40a78b6.tar.xz
nixpkgs-cdb2bc77c43ac3bc0a4a5b4783e407b1b40a78b6.tar.zst
nixpkgs-cdb2bc77c43ac3bc0a4a5b4783e407b1b40a78b6.zip
davfs2: 1.4.7 -> 1.5.2; fixes the build
Diffstat (limited to 'pkgs/tools/filesystems/davfs2/default.nix')
-rw-r--r--pkgs/tools/filesystems/davfs2/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/filesystems/davfs2/default.nix b/pkgs/tools/filesystems/davfs2/default.nix
index d16af28010c..20b71af6331 100644
--- a/pkgs/tools/filesystems/davfs2/default.nix
+++ b/pkgs/tools/filesystems/davfs2/default.nix
@@ -1,19 +1,21 @@
 { stdenv, fetchurl, neon, zlib }:
 
 stdenv.mkDerivation rec {
-  name = "davfs2-1.4.7";
+  name = "davfs2-1.5.2";
 
   src = fetchurl {
     url = "mirror://savannah/davfs2/${name}.tar.gz";
-    sha256 = "0i7hrwlfzisb4l2mza1kjj9q9xxixggjplsjm339zl7828mfxh2h";
+    sha256 = "0n5k2xxfxmbsavg5fhp65lmy30hq9jg3w242rdzafvksnnda2d5y";
   };
 
   buildInputs = [ neon zlib ];
 
-  patches = [ ./davfs2-install.patch ./isdir.patch ./fix-sysconfdir.patch ];
+  patches = [ ./isdir.patch ./fix-sysconfdir.patch ];
 
   configureFlags = "--sysconfdir=/etc";
 
+  makeFlags = ["sbindir=$(out)/sbin" "ssbindir=$(out)/sbin"];
+
   meta = {
     homepage = "http://savannah.nongnu.org/projects/davfs2";
     description = "mount WebDAV shares like a typical filesystem";