Merge pull request #70724 from yrashk/swipl-gui
swipl: include GUI tools
This commit is contained in:
commit
516e61a69e
@ -2,8 +2,10 @@
|
|||||||
, libarchive, db, pcre, libedit, libossp_uuid, libXpm
|
, libarchive, db, pcre, libedit, libossp_uuid, libXpm
|
||||||
, libSM, libXt, freetype, pkgconfig, fontconfig, makeWrapper ? stdenv.isDarwin
|
, libSM, libXt, freetype, pkgconfig, fontconfig, makeWrapper ? stdenv.isDarwin
|
||||||
, git, cacert, cmake, libyaml
|
, git, cacert, cmake, libyaml
|
||||||
|
, libjpeg, libX11, libXext, libXft, libXinerama
|
||||||
, extraLibraries ? [ jdk unixODBC libXpm libSM libXt freetype fontconfig ]
|
, extraLibraries ? [ jdk unixODBC libXpm libSM libXt freetype fontconfig ]
|
||||||
, extraPacks ? []
|
, extraPacks ? []
|
||||||
|
, withGui ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -25,6 +27,7 @@ stdenv.mkDerivation {
|
|||||||
buildInputs = [ cacert git cmake gmp readline openssl
|
buildInputs = [ cacert git cmake gmp readline openssl
|
||||||
libarchive libyaml db pcre libedit libossp_uuid
|
libarchive libyaml db pcre libedit libossp_uuid
|
||||||
zlib pkgconfig ]
|
zlib pkgconfig ]
|
||||||
|
++ stdenv.lib.optionals (withGui && !stdenv.isDarwin) [ libXpm libX11 libXext libXft libXinerama libjpeg ]
|
||||||
++ extraLibraries
|
++ extraLibraries
|
||||||
++ stdenv.lib.optional stdenv.isDarwin makeWrapper;
|
++ stdenv.lib.optional stdenv.isDarwin makeWrapper;
|
||||||
|
|
||||||
@ -68,7 +71,7 @@ stdenv.mkDerivation {
|
|||||||
description = "A Prolog compiler and interpreter";
|
description = "A Prolog compiler and interpreter";
|
||||||
license = "LGPL";
|
license = "LGPL";
|
||||||
|
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.optionals (!withGui) stdenv.lib.platforms.darwin;
|
||||||
maintainers = [ stdenv.lib.maintainers.meditans ];
|
maintainers = [ stdenv.lib.maintainers.meditans ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -8541,6 +8541,7 @@ in
|
|||||||
swift = callPackage ../development/compilers/swift { };
|
swift = callPackage ../development/compilers/swift { };
|
||||||
|
|
||||||
swiProlog = callPackage ../development/compilers/swi-prolog { };
|
swiProlog = callPackage ../development/compilers/swi-prolog { };
|
||||||
|
swiPrologWithGui = callPackage ../development/compilers/swi-prolog { withGui = true; };
|
||||||
|
|
||||||
tbb = callPackage ../development/libraries/tbb { };
|
tbb = callPackage ../development/libraries/tbb { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user