package.nix (752B)
1 { 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 chez, 6 libuuid, 7 lz4, 8 ncurses, 9 zlib, 10 }: 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "schemesh"; 14 version = "0.9.2-unstable-2025-10-30"; 15 16 src = fetchFromGitHub { 17 owner = "cosmos72"; 18 repo = "schemesh"; 19 rev = "e5bb172238179ba769398150c856d8f16407626a"; 20 hash = "sha256-9qBIV3O5uU5Wouiy4roe0UW1bNJYJ0l0EySYdWZcX80="; 21 }; 22 23 buildInputs = [ 24 chez 25 libuuid 26 lz4 27 ncurses 28 zlib 29 ]; 30 31 makeFlags = [ "prefix=$(out)" ]; 32 33 meta = { 34 description = "A Unix shell and Lisp REPL, fused together"; 35 homepage = "https://github.com/cosmos72/schemesh"; 36 license = lib.licenses.gpl2Plus; 37 maintainers = [ lib.maintainers.sikmir ]; 38 platforms = lib.platforms.unix; 39 }; 40 })
