Merge pull request #44380 from meditans/swi-prolog-check-installation
Add missing dependencies for swi-prolog
This commit is contained in:
commit
f64c01fa79
1 changed files with 5 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, fetchurl, jdk, gmp, readline, openssl, libjpeg, unixODBC, zlib
|
||||
, libXinerama, libXft, libXpm, libSM, libXt, freetype, pkgconfig
|
||||
, fontconfig, makeWrapper ? stdenv.isDarwin
|
||||
, libXinerama, libarchive, db, pcre, libedit, libossp_uuid, libXft, libXpm
|
||||
, libSM, libXt, freetype, pkgconfig, fontconfig, makeWrapper ? stdenv.isDarwin
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -15,7 +15,8 @@ stdenv.mkDerivation {
|
|||
};
|
||||
|
||||
buildInputs = [ jdk gmp readline openssl libjpeg unixODBC libXinerama
|
||||
libXft libXpm libSM libXt zlib freetype pkgconfig fontconfig ]
|
||||
libarchive db pcre libedit libossp_uuid libXft libXpm libSM libXt
|
||||
zlib freetype pkgconfig fontconfig ]
|
||||
++ stdenv.lib.optional stdenv.isDarwin makeWrapper;
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
@ -42,6 +43,6 @@ stdenv.mkDerivation {
|
|||
license = "LGPL";
|
||||
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.peti ];
|
||||
maintainers = [ stdenv.lib.maintainers.peti stdenv.lib.maintainers.meditans ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue