summary refs log tree commit diff
path: root/pkgs/development/libraries/openssl
diff options
context:
space:
mode:
authorTom McLaughlin <tom@codedown.io>2022-01-26 21:41:18 -0800
committerGitHub <noreply@github.com>2022-01-27 00:41:18 -0500
commitd01b2cc71bf6e220e164bf57d757624b01429ba0 (patch)
treea760f360ca391638ef372d2e35176bd1ba5e6df0 /pkgs/development/libraries/openssl
parent67f5d2963f5d746e2a7500ab5ca68b232e33c026 (diff)
downloadnixpkgs-d01b2cc71bf6e220e164bf57d757624b01429ba0.tar
nixpkgs-d01b2cc71bf6e220e164bf57d757624b01429ba0.tar.gz
nixpkgs-d01b2cc71bf6e220e164bf57d757624b01429ba0.tar.bz2
nixpkgs-d01b2cc71bf6e220e164bf57d757624b01429ba0.tar.lz
nixpkgs-d01b2cc71bf6e220e164bf57d757624b01429ba0.tar.xz
nixpkgs-d01b2cc71bf6e220e164bf57d757624b01429ba0.tar.zst
nixpkgs-d01b2cc71bf6e220e164bf57d757624b01429ba0.zip
openssl: remove assert restricting withPerl=false (#156949)
Diffstat (limited to 'pkgs/development/libraries/openssl')
-rw-r--r--pkgs/development/libraries/openssl/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix
index bbf5bd9aa16..390227cfe95 100644
--- a/pkgs/development/libraries/openssl/default.nix
+++ b/pkgs/development/libraries/openssl/default.nix
@@ -9,11 +9,6 @@
 , withPerl ? stdenv.hostPlatform == stdenv.buildPlatform
 }:
 
-assert (
-  lib.assertMsg (!withPerl -> stdenv.hostPlatform != stdenv.buildPlatform)
-  "withPerl should not be disabled unless cross compiling"
-);
-
 # Note: this package is used for bootstrapping fetchurl, and thus
 # cannot use fetchpatch! All mutable patches (generated by GitHub or
 # cgit) that are needed here should be included directly in Nixpkgs as