mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
9bd006b18e
- fix a typo and remove whitespace
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, zlib }:
|
|
|
|
let
|
|
ARCH = {
|
|
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.6#8";
|
|
|
|
src = fetchurl {
|
|
url = "http://picat-lang.org/download/picat368_src.tar.gz";
|
|
hash = "sha256-eJxF5atvJq3fhFltcQCGTP/sgUmfsfCohUgm3x2U1n0=";
|
|
};
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
inherit ARCH;
|
|
|
|
hardeningDisable = [ "format" ];
|
|
enableParallelBuilding = true;
|
|
|
|
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 language";
|
|
mainProgram = "picat";
|
|
homepage = "http://picat-lang.org/";
|
|
license = licenses.mpl20;
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
"x86_64-cygwin"
|
|
"x86_64-darwin"
|
|
"aarch64-darwin"
|
|
];
|
|
maintainers = with maintainers; [ earldouglas thoughtpolice ];
|
|
};
|
|
}
|