picat: 3.0p2 -> 3.0p3, co-maintain
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
00c451ad40
commit
f6d423470a
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "picat";
|
pname = "picat";
|
||||||
version = "3.0p2";
|
version = "3.0p3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://picat-lang.org/download/picat30_2_src.tar.gz";
|
url = "http://picat-lang.org/download/picat30_3_src.tar.gz";
|
||||||
sha256 = "0sn4fqj2ryalcndx1df5kx5rzb4pfcrza5ljlg9dkfbqv02xgxkd";
|
sha256 = "052w0vk2xfmky5nv280ysb8in6vaph7i79yvbddqmahzszarq5hw";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ zlib ];
|
buildInputs = [ zlib ];
|
||||||
@ -18,25 +18,18 @@ stdenv.mkDerivation {
|
|||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = "cd emu && make -j $NIX_BUILD_CORES -f Makefile.$ARCH";
|
||||||
cd emu
|
|
||||||
make -f Makefile.$ARCH
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
cp picat $out/bin/picat
|
cp picat $out/bin/picat
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Logic-based programming langage";
|
description = "Logic-based programming langage";
|
||||||
longDescription = ''
|
homepage = "http://picat-lang.org/";
|
||||||
Picat is a simple, and yet powerful, logic-based multi-paradigm
|
license = licenses.mpl20;
|
||||||
programming language aimed for general-purpose applications.
|
platforms = platforms.linux;
|
||||||
'';
|
maintainers = with maintainers; [ earldouglas thoughtpolice ];
|
||||||
homepage = "http://picat-lang.org/";
|
|
||||||
license = stdenv.lib.licenses.mpl20;
|
|
||||||
platforms = stdenv.lib.platforms.linux;
|
|
||||||
maintainers = [ stdenv.lib.maintainers.earldouglas ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user