about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-06-18 09:46:31 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-06-18 09:51:06 +0100
commitf43da049247aa704cacc8a9fa8777a0335759137 (patch)
tree0cf8712e181404006c36843a6b7f84a1e49ee235 /pkgs
parent5b96398b4d65908cc47748f61ccde8ea57fdac1f (diff)
freicoin: fix build by disabling miniupnpc support
development has stalled and miniupnpc library is incompatible with
freicoin.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/altcoins/freicoin.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/altcoins/freicoin.nix b/pkgs/applications/altcoins/freicoin.nix
index f7cd04f1be4ef..e8a26365361d3 100644
--- a/pkgs/applications/altcoins/freicoin.nix
+++ b/pkgs/applications/altcoins/freicoin.nix
@@ -11,16 +11,18 @@ stdenv.mkDerivation rec {
     sha256 = "1m5pcnfhwhcj7q00p2sy3h73rkdm3w6grmljgiq53gshcj08cq1z";
   };
 
+  qmakeFlags = ["USE_UPNP=-"];
+
   # I think that openssl and zlib are required, but come through other
   # packages
 
   installPhase = ''
     mkdir -p $out/bin
     cp freicoin-qt $out/bin
-    '';
+  '';
 
   nativeBuildInputs = [ qmake4Hook ];
-  buildInputs = [ db boost gmp mpfr miniupnpc qt4 ];
+  buildInputs = [ db boost gmp mpfr qt4 ];
 
   meta = with stdenv.lib; {
     description = "Peer-to-peer currency with demurrage fee";