From 254292858c922fa3bf8c65c75f0868e38c5fe737 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Tue, 20 Aug 2019 21:24:40 +0200 Subject: [PATCH] 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." --- pkgs/applications/altcoins/pivx.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/applications/altcoins/pivx.nix b/pkgs/applications/altcoins/pivx.nix index 995b8deccd95..e2cf8aa182f3 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; }; }