From 45769db278e58b6633d8bf9966c48a5cb0fb5324 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Tue, 20 Aug 2019 22:47:18 +0200 Subject: [PATCH] altcoins.freicoin: mark as broken doesn't build with openssl 1.1 and they use openssl 1.0.1 for testing --- pkgs/applications/altcoins/freicoin.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/altcoins/freicoin.nix b/pkgs/applications/altcoins/freicoin.nix index 78ce074eafd..664159be201 100644 --- a/pkgs/applications/altcoins/freicoin.nix +++ b/pkgs/applications/altcoins/freicoin.nix @@ -34,5 +34,8 @@ stdenv.mkDerivation rec { license = licenses.mit; maintainers = [ maintainers.viric ]; platforms = platforms.linux; + + # upstream doesn't support newer openssl versions, use 1.0.1 for testing + broken = true; }; }