picat: 3.3p3 -> 3.6

This commit is contained in:
Alex Valiushko 2024-03-29 15:49:38 -07:00 committed by Austin Seipp
parent 5bb7dee2ab
commit 48f469c09b

View File

@ -2,18 +2,20 @@
let
ARCH = {
i686-linux = "linux32";
x86_64-linux = "linux64";
x86_64-linux = "linux64";
aarch64-linux = "linux64";
x86_64-cygwin = "cygwin64";
x86_64-darwin = "mac64";
aarch64-darwin = "mac64";
}."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
in
stdenv.mkDerivation {
pname = "picat";
version = "3.3p3";
version = "3.6";
src = fetchurl {
url = "http://picat-lang.org/download/picat333_src.tar.gz";
hash = "sha256-LMmAHCGKgon/wNbrXTUH9hiHyGVwwSDpB1236xawzXs=";
url = "http://picat-lang.org/download/picat36_src.tar.gz";
hash = "sha256-DjP1cjKxRLxMjiHmYX42+kaG5//09IrPIc1O75gLA6k=";
};
buildInputs = [ zlib ];
@ -23,15 +25,30 @@ stdenv.mkDerivation {
hardeningDisable = [ "format" ];
enableParallelBuilding = true;
buildPhase = "cd emu && make -j $NIX_BUILD_CORES -f Makefile.$ARCH";
installPhase = "mkdir -p $out/bin && cp picat $out/bin/picat";
buildPhase = ''
cd emu
make -j $NIX_BUILD_CORES -f Makefile.$ARCH
'';
installPhase = ''
mkdir -p $out/bin $out/share
cp picat $out/bin/
cp -r ../doc $out/share/doc
cp -r ../exs $out/share/examples
'';
meta = with lib; {
description = "Logic-based programming langage";
mainProgram = "picat";
homepage = "http://picat-lang.org/";
license = licenses.mpl20;
platforms = platforms.linux;
platforms = [
"x86_64-linux"
"aarch64-linux"
"x86_64-cygwin"
"x86_64-darwin"
"aarch64-darwin"
];
maintainers = with maintainers; [ earldouglas thoughtpolice ];
};
}