depot/third_party/nixpkgs/pkgs/development/compilers/critcl/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

46 lines
868 B
Nix

{ 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;
};
}