guile-hoot: add missing dependencies for hoot repl

Hoot 0.8.0 added a binary and two new modules `(hoot repl)` and
`(hoot web-server)` that need `guile-fibers` and `guile-websocket` to be
present during compilation. The hoot binary also needs to be wrapped and
runs on nodejs so it was added as a dependency

Co-authored-by: Jinser Kafka <aimer@purejs.icu>
This commit is contained in:
control-o
2026-03-26 21:41:39 +01:00
co-authored by Jinser Kafka
parent e005bc0024
commit 0e44b69db0
+25
View File
@@ -3,7 +3,12 @@
stdenv,
fetchFromCodeberg,
autoreconfHook,
makeWrapper,
nodejs,
guile,
guile-websocket,
guile-fibers,
guile-gnutls,
pkg-config,
texinfo,
nix-update-script,
@@ -21,11 +26,30 @@ stdenv.mkDerivation (finalAttrs: {
};
nativeBuildInputs = [
makeWrapper
autoreconfHook
guile
pkg-config
texinfo
nodejs
];
propagatedBuildInputs = [
guile-fibers
guile-websocket
guile-gnutls
];
postInstall =
let
libs = [ "$out" ] ++ finalAttrs.propagatedBuildInputs;
in
''
cp ./repl/repl.js $out/share/guile-hoot/0.8.0/repl/repl.js
wrapProgram $out/bin/hoot \
--prefix GUILE_LOAD_PATH : ${lib.makeSearchPath guile.siteDir libs} \
--prefix GUILE_LOAD_COMPILED_PATH : ${lib.makeSearchPath guile.siteCcacheDir libs}
'';
buildInputs = [
guile
];
@@ -41,5 +65,6 @@ stdenv.mkDerivation (finalAttrs: {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ jinser ];
platforms = lib.platforms.unix;
mainProgram = "hoot";
};
})