summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2020-04-02 13:56:08 +0000
committerGitHub <noreply@github.com>2020-04-02 13:56:08 +0000
commit8195e7eb937fc3c2f50535a3dea638457f795243 (patch)
tree6aabe3186c73370595b0766f673d0c46c82c6165 /pkgs/tools/security
parentc40f90428a74083574af21c07e2c6ee65093b2a7 (diff)
downloadnixpkgs-8195e7eb937fc3c2f50535a3dea638457f795243.tar
nixpkgs-8195e7eb937fc3c2f50535a3dea638457f795243.tar.gz
nixpkgs-8195e7eb937fc3c2f50535a3dea638457f795243.tar.bz2
nixpkgs-8195e7eb937fc3c2f50535a3dea638457f795243.tar.lz
nixpkgs-8195e7eb937fc3c2f50535a3dea638457f795243.tar.xz
nixpkgs-8195e7eb937fc3c2f50535a3dea638457f795243.tar.zst
nixpkgs-8195e7eb937fc3c2f50535a3dea638457f795243.zip
scallion: use openssl 1.0
it does not work with openssl 1.1 (upstream issue https://github.com/lachesis/scallion/issues/113)
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/scallion/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/scallion/default.nix b/pkgs/tools/security/scallion/default.nix
index e419232641b..1395b8e1061 100644
--- a/pkgs/tools/security/scallion/default.nix
+++ b/pkgs/tools/security/scallion/default.nix
@@ -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
   '';