schemesh: init at 0.9.3 (#499783)
This commit is contained in:
@@ -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";
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user