summary refs log tree commit diff
path: root/pkgs/applications
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
parent806c2c42c12f7f936ad34c2fde53cb824be871ac (diff)
downloadnixpkgs-254292858c922fa3bf8c65c75f0868e38c5fe737.tar
nixpkgs-254292858c922fa3bf8c65c75f0868e38c5fe737.tar.gz
nixpkgs-254292858c922fa3bf8c65c75f0868e38c5fe737.tar.bz2
nixpkgs-254292858c922fa3bf8c65c75f0868e38c5fe737.tar.lz
nixpkgs-254292858c922fa3bf8c65c75f0868e38c5fe737.tar.xz
nixpkgs-254292858c922fa3bf8c65c75f0868e38c5fe737.tar.zst
nixpkgs-254292858c922fa3bf8c65c75f0868e38c5fe737.zip
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')
-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 995b8deccd9..e2cf8aa182f 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;
   };
 }