schemesh: init at 0.9.3

This commit is contained in:
Nikolay Korotkiy
2026-03-14 13:21:55 +04:00
parent 9867d243d7
commit bc36ae69a4
+41
View File
@@ -0,0 +1,41 @@
{
lib,
stdenv,
fetchFromGitHub,
chez,
libuuid,
lz4,
ncurses,
zlib,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "schemesh";
version = "0.9.3";
src = fetchFromGitHub {
owner = "cosmos72";
repo = "schemesh";
tag = "v${finalAttrs.version}";
hash = "sha256-OhQpXFg3eroVpw4zkENM4zwqHqGNolstlq9oLhQ2cbY=";
};
buildInputs = [
chez
libuuid
lz4
ncurses
zlib
];
makeFlags = [ "prefix=$(out)" ];
meta = {
description = "A Unix shell and Lisp REPL, fused together";
homepage = "https://github.com/cosmos72/schemesh";
license = lib.licenses.gpl2Plus;
maintainers = [ lib.maintainers.sikmir ];
platforms = lib.platforms.linux;
mainProgram = "schemesh";
};
})