about summary refs log tree commit diff
path: root/pkgs/applications/altcoins
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-08-20 21:24:40 +0200
committerRobin Gloster <mail@glob.in>2019-08-20 21:24:40 +0200
commit254292858c922fa3bf8c65c75f0868e38c5fe737 (patch)
tree2fd4f7152782aab6e9a1084f4b20b1c73a623a4a /pkgs/applications/altcoins
parent806c2c42c12f7f936ad34c2fde53cb824be871ac (diff)
altcoins.pivx: mark as broken
Upstream doesn't support newer openssl versions
https://github.com/PIVX-Project/PIVX/issues/748
"Your system is most probably using openssl 1.1 which is not the
officialy supported version. Either use 1.0.1 or run again configure
with the given option."
Diffstat (limited to 'pkgs/applications/altcoins')
-rw-r--r--pkgs/applications/altcoins/pivx.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/applications/altcoins/pivx.nix b/pkgs/applications/altcoins/pivx.nix
index 995b8deccd951..e2cf8aa182f33 100644
--- a/pkgs/applications/altcoins/pivx.nix
+++ b/pkgs/applications/altcoins/pivx.nix
@@ -50,5 +50,12 @@ stdenv.mkDerivation rec {
     homepage = https://www.dash.org;
     maintainers = with maintainers; [ wucke13 ];
     platforms = platforms.unix;
+
+    # upstream doesn't support newer openssl versions
+    # https://github.com/PIVX-Project/PIVX/issues/748
+    # "Your system is most probably using openssl 1.1 which is not the
+    # officialy supported version. Either use 1.0.1 or run again configure
+    # with the given option."
+    broken = true;
   };
 }