radare2: remove ? null and assert

This commit is contained in:
Sandro Jäckel 2021-04-08 13:06:47 +02:00
parent 034c49f514
commit 61712e88ed
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -13,23 +13,18 @@
, file
, libzip
, xxHash
, gtk2 ? null
, vte ? null
, gtkdialog ? null
, python3 ? null
, ruby ? null
, lua ? null
, gtk2
, vte
, gtkdialog
, python3
, ruby
, lua
, useX11 ? false
, rubyBindings ? false
, pythonBindings ? false
, luaBindings ? false
}:
assert useX11 -> (gtk2 != null && vte != null && gtkdialog != null);
assert rubyBindings -> ruby != null;
assert pythonBindings -> python3 != null;
let
inherit (lib) optional;