mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
add openssl-with-rc4 package
This commit is contained in:
parent
e8a3d8a098
commit
9fbdf65ffc
1 changed files with 20 additions and 0 deletions
20
pkgs/openssl-with-rc4.nix
Normal file
20
pkgs/openssl-with-rc4.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ callPackage, openssl_1_1, path, stdenv }:
|
||||
|
||||
# This package exists for testing.
|
||||
# ./result-bin/bin/openssl ciphers -v "ALL:@SECLEVEL=0" | grep RC4
|
||||
|
||||
let
|
||||
|
||||
oldScript = openssl_1_1.configureScript;
|
||||
|
||||
edited = stdenv.mkDerivation {
|
||||
name = "openssl-with-rc4";
|
||||
src = path + "/pkgs/development/libraries/openssl";
|
||||
installPhase = ''
|
||||
sed -i 's|${oldScript}|${oldScript} enable-weak-ssl-ciphers|g' default.nix
|
||||
cp -a . $out
|
||||
'';
|
||||
};
|
||||
|
||||
in
|
||||
(callPackage edited { }).openssl_1_1
|
Loading…
Reference in a new issue