summary refs log tree commit diff
path: root/pkgs/development/libraries/librsync
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-12-10 22:14:08 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-12-10 22:14:08 +0000
commit99fb5689f78f7244e6ae10265a3eea5de3257d5a (patch)
treef4b9e10a840126573ea54690629880799e37e45e /pkgs/development/libraries/librsync
parent894a3756e599ccf5f46e251d0bf12f22f65fdafc (diff)
downloadnixpkgs-99fb5689f78f7244e6ae10265a3eea5de3257d5a.tar
nixpkgs-99fb5689f78f7244e6ae10265a3eea5de3257d5a.tar.gz
nixpkgs-99fb5689f78f7244e6ae10265a3eea5de3257d5a.tar.bz2
nixpkgs-99fb5689f78f7244e6ae10265a3eea5de3257d5a.tar.lz
nixpkgs-99fb5689f78f7244e6ae10265a3eea5de3257d5a.tar.xz
nixpkgs-99fb5689f78f7244e6ae10265a3eea5de3257d5a.tar.zst
nixpkgs-99fb5689f78f7244e6ae10265a3eea5de3257d5a.zip
Setting static build for librsync on cygwin.
svn path=/nixpkgs/trunk/; revision=30822
Diffstat (limited to 'pkgs/development/libraries/librsync')
-rw-r--r--pkgs/development/libraries/librsync/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/librsync/default.nix b/pkgs/development/libraries/librsync/default.nix
index 84f34eeebe1..a70a61042e0 100644
--- a/pkgs/development/libraries/librsync/default.nix
+++ b/pkgs/development/libraries/librsync/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation {
     sha256 = "1mj1pj99mgf1a59q9f2mxjli2fzxpnf55233pc1klxk2arhf8cv6";
   };
 
-  configureFlags = "--enable-shared";
+  configureFlags = if stdenv.isCygwin then "--enable-static" else "--enable-shared";
 
   meta = {
     homepage = http://librsync.sourceforge.net/;