critcl: init at 3.2

This commit is contained in:
Francesco Gazzetta 2023-10-06 10:21:22 +02:00
parent 0415d505bb
commit 7e383bf3c2
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,46 @@
{ lib
, fetchFromGitHub
, tcl
, tcllib
}:
tcl.mkTclDerivation rec {
pname = "critcl";
version = "3.2";
src = fetchFromGitHub {
owner = "andreas-kupries";
repo = "critcl";
rev = version;
hash = "sha256-IxScn9ZTlqD9mG9VJLG+TtplLFhhahOiFhQCjxp22Uk=";
};
buildInputs = [
tcl
tcllib
];
dontBuild = true;
doCheck = true;
checkPhase = ''
runHook preInstall
HOME="$(mktemp -d)" tclsh ./build.tcl test
runHook postInstall
'';
installPhase = ''
runHook preInstall
tclsh ./build.tcl install --prefix $out
runHook postInstall
'';
meta = with lib; {
description = "Easily embed C code in Tcl";
homepage = "https://andreas-kupries.github.io/critcl/";
license = licenses.tcltk;
mainProgram = "critcl";
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
};
}

View file

@ -15752,6 +15752,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) CoreServices;
};
critcl = callPackage ../development/compilers/critcl { };
inherit (darwin.apple_sdk_11_0.callPackage ../development/compilers/crystal { })
crystal_1_2
crystal_1_7