radare2: remove ? null and assert

wip/yesman
Sandro Jäckel 3 years ago
parent 034c49f514
commit 61712e88ed
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 17
      pkgs/development/tools/analysis/radare2/default.nix

@ -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;

Loading…
Cancel
Save