gprolog: update to version 1.4.1
This commit is contained in:
parent
7b0d9ecdd5
commit
b170bb0bf0
@ -1,14 +1,14 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gprolog-1.4.0";
|
name = "gprolog-1.4.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
urls = [
|
urls = [
|
||||||
"mirror://gnu/gprolog/${name}.tar.gz"
|
"mirror://gnu/gprolog/${name}.tar.gz"
|
||||||
"http://www.gprolog.org/${name}.tar.gz"
|
"http://www.gprolog.org/${name}.tar.gz"
|
||||||
];
|
];
|
||||||
sha256 = "1l66k66ryfw1nfi2wlvsyq4cmr6mm95f4iay1fxdk3hdk3fjyjl0";
|
sha256 = "e2819ed9c426138d3191e4d97ae5121cf97e132eecf102400f87f1e372a05b72";
|
||||||
};
|
};
|
||||||
|
|
||||||
configurePhase = "cd src ;"
|
configurePhase = "cd src ;"
|
||||||
@ -17,16 +17,18 @@ stdenv.mkDerivation rec {
|
|||||||
+ "--with-examples-dir=$out/share/doc/${name}/examples "
|
+ "--with-examples-dir=$out/share/doc/${name}/examples "
|
||||||
+ "--with-doc-dir=$out/share/doc/${name}";
|
+ "--with-doc-dir=$out/share/doc/${name}";
|
||||||
|
|
||||||
doCheck = true;
|
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
ln -vs "$out/share/${name}/include" "$out/include"
|
ln -vs "$out/share/${name}/include" "$out/include"
|
||||||
|
ln -vs "$out/share/${name}/lib" "$out/lib"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
doCheck = true;
|
||||||
homepage = http://www.gnu.org/software/gprolog/;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "http://www.gnu.org/software/gprolog/";
|
||||||
description = "GNU Prolog, a free Prolog compiler with constraint solving over finite domains";
|
description = "GNU Prolog, a free Prolog compiler with constraint solving over finite domains";
|
||||||
|
license = "GPLv2+";
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
GNU Prolog is a free Prolog compiler with constraint solving
|
GNU Prolog is a free Prolog compiler with constraint solving
|
||||||
@ -52,8 +54,6 @@ stdenv.mkDerivation rec {
|
|||||||
declarativity of logic programming.
|
declarativity of logic programming.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
license = "GPLv2+";
|
|
||||||
|
|
||||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
platforms = stdenv.lib.platforms.gnu;
|
platforms = stdenv.lib.platforms.gnu;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user