Compare commits

...

2 Commits

Author SHA1 Message Date
Přemysl Eric Janouch a0e88fb445
Add xB plugin interpreters to xK buildInputs
This is more or less pointless, but Nix forces us to.
2023-07-04 02:28:48 +02:00
Přemysl Eric Janouch ebdcef7180
Avoid pointless propagatedBuildInputs
It suffices for Perl to be in buildInputs
for json-format.pl's hashbang to get fixed up.
2023-07-04 02:21:54 +02:00
2 changed files with 9 additions and 4 deletions

View File

@ -18,16 +18,13 @@ pkgs.stdenv.mkDerivation rec {
jansson
curl
libev
perl
] ++ lib.optionals full [
readline
] ++ lib.optionals (!full) [
libedit
];
propagatedBuildInputs = with pkgs; [
perl
];
src = if local then
builtins.path {
path = ../${pname}/git;

View File

@ -22,6 +22,14 @@ pkgs.stdenv.mkDerivation rec {
] ++ lib.optionals full [
readline
lua5_3
# xB plugins
guile
tcl
perl
ruby
tinycc
python3
] ++ lib.optionals (!full) [
libedit
];