scallion: use openssl 1.0
it does not work with openssl 1.1 (upstream issue https://github.com/lachesis/scallion/issues/113)
This commit is contained in:
parent
c40f90428a
commit
8195e7eb93
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, makeWrapper, mono, openssl, ocl-icd }:
|
||||
{ stdenv, fetchFromGitHub, makeWrapper, mono, openssl_1_0_2, ocl-icd }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2.1";
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||
mkdir -p $out/share
|
||||
cp scallion/bin/Debug/* $out/share/
|
||||
makeWrapper ${mono}/bin/mono $out/bin/scallion \
|
||||
--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ openssl ocl-icd ]} \
|
||||
--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ openssl_1_0_2 ocl-icd ]} \
|
||||
--add-flags $out/share/scallion.exe
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue