nixpkgs/pkgs/development/compilers/picat/default.nix

37 lines
983 B
Nix
Raw Normal View History

2020-01-18 14:55:23 +00:00
{ stdenv, fetchurl, zlib }:
2016-05-26 20:36:15 +00:00
let
ARCH = {
i686-linux = "linux32";
x86_64-linux = "linux64";
aarch64-linux = "linux64";
}."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
in
2016-05-26 20:36:15 +00:00
stdenv.mkDerivation {
2020-01-18 14:55:23 +00:00
pname = "picat";
version = "3.0p3";
2016-05-26 20:36:15 +00:00
src = fetchurl {
url = "http://picat-lang.org/download/picat30_3_src.tar.gz";
sha256 = "052w0vk2xfmky5nv280ysb8in6vaph7i79yvbddqmahzszarq5hw";
2016-05-26 20:36:15 +00:00
};
2020-01-18 14:55:23 +00:00
buildInputs = [ zlib ];
inherit ARCH;
2016-05-26 20:36:15 +00:00
2016-05-31 12:57:28 +00:00
hardeningDisable = [ "format" ];
enableParallelBuilding = true;
2016-05-31 12:57:28 +00:00
buildPhase = "cd emu && make -j $NIX_BUILD_CORES -f Makefile.$ARCH";
installPhase = "mkdir -p $out/bin && cp picat $out/bin/picat";
2016-05-26 20:36:15 +00:00
meta = with stdenv.lib; {
2016-05-26 20:36:15 +00:00
description = "Logic-based programming langage";
homepage = "http://picat-lang.org/";
license = licenses.mpl20;
platforms = platforms.linux;
maintainers = with maintainers; [ earldouglas thoughtpolice ];
2016-05-26 20:36:15 +00:00
};
}