mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
2c2f1e37d4
It is deprecated and will be removed after 18.09.
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "picat-1.9-4";
|
|
|
|
src = fetchurl {
|
|
url = http://picat-lang.org/download/picat19_src.tar.gz;
|
|
sha256 = "0wvl95gf4pjs93632g4wi0mw1glzzhjp9g4xg93ll2zxggbxibli";
|
|
};
|
|
|
|
ARCH = if stdenv.hostPlatform.system == "i686-linux" then "linux32"
|
|
else if stdenv.hostPlatform.system == "x86_64-linux" then "linux64"
|
|
else throw "Unsupported system";
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
buildPhase = ''
|
|
cd emu
|
|
make -f Makefile.picat.$ARCH
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp picat_$ARCH $out/bin/picat
|
|
'';
|
|
|
|
meta = {
|
|
description = "Logic-based programming langage";
|
|
longDescription = ''
|
|
Picat is a simple, and yet powerful, logic-based multi-paradigm
|
|
programming language aimed for general-purpose applications.
|
|
'';
|
|
homepage = http://picat-lang.org/;
|
|
license = stdenv.lib.licenses.mpl20;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.earldouglas ];
|
|
};
|
|
}
|