mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
critcl: init at 3.2
This commit is contained in:
parent
0415d505bb
commit
7e383bf3c2
2 changed files with 48 additions and 0 deletions
46
pkgs/development/compilers/critcl/default.nix
Normal file
46
pkgs/development/compilers/critcl/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue