summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorPiotr Bogdan <ppbogdan@gmail.com>2019-01-04 19:33:51 +0000
committerPiotr Bogdan <ppbogdan@gmail.com>2019-01-04 21:44:21 +0000
commit19061fb79e126c39c53c7aada9db9ea3b2f811d7 (patch)
treeeb5f5ce101166c7846cecf2dcfd6214e5fe68057 /pkgs/tools/filesystems
parenta54cc22d4d20eb51f01c19562b6de5468122c874 (diff)
downloadnixpkgs-19061fb79e126c39c53c7aada9db9ea3b2f811d7.tar
nixpkgs-19061fb79e126c39c53c7aada9db9ea3b2f811d7.tar.gz
nixpkgs-19061fb79e126c39c53c7aada9db9ea3b2f811d7.tar.bz2
nixpkgs-19061fb79e126c39c53c7aada9db9ea3b2f811d7.tar.lz
nixpkgs-19061fb79e126c39c53c7aada9db9ea3b2f811d7.tar.xz
nixpkgs-19061fb79e126c39c53c7aada9db9ea3b2f811d7.tar.zst
nixpkgs-19061fb79e126c39c53c7aada9db9ea3b2f811d7.zip
svnfs: link with libsvn_subr-1 explicitly
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/svnfs/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/filesystems/svnfs/default.nix b/pkgs/tools/filesystems/svnfs/default.nix
index 33371418217..ebfb211732e 100644
--- a/pkgs/tools/filesystems/svnfs/default.nix
+++ b/pkgs/tools/filesystems/svnfs/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
   '';
 
   NIX_CFLAGS_COMPILE="-I ${subversion.dev}/include/subversion-1";
-  NIX_LDFLAGS="-lsvn_client-1";
+  NIX_LDFLAGS="-lsvn_client-1 -lsvn_subr-1";
 
   meta = {
     description = "FUSE filesystem for accessing Subversion repositories";