9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
55 lines
1.7 KiB
Nix
55 lines
1.7 KiB
Nix
{ stdenv, fetchFromGitHub, jdk, gmp, readline, openssl, unixODBC, zlib
|
|
, libarchive, db, pcre, libedit, libossp_uuid, libXpm
|
|
, libSM, libXt, freetype, pkg-config, fontconfig
|
|
, cmake, libyaml, Security
|
|
, libjpeg, libX11, libXext, libXft, libXinerama
|
|
, extraLibraries ? [ jdk unixODBC libXpm libSM libXt freetype fontconfig ]
|
|
, extraPacks ? []
|
|
, withGui ? false
|
|
}:
|
|
|
|
let
|
|
version = "8.3.9";
|
|
packInstall = swiplPath: pack:
|
|
''${swiplPath}/bin/swipl -g "pack_install(${pack}, [package_directory(\"${swiplPath}/lib/swipl/pack\"), silent(true), interactive(false)])." -t "halt."
|
|
'';
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "swi-prolog";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SWI-Prolog";
|
|
repo = "swipl-devel";
|
|
rev = "V${version}";
|
|
sha256 = "0ixb8pc5s7q8q0njs8is1clpvik6jhhdcwnys7m9rpwdzgi10sjz";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [ gmp readline openssl
|
|
libarchive libyaml db pcre libedit libossp_uuid
|
|
zlib ]
|
|
++ stdenv.lib.optionals (withGui && !stdenv.isDarwin) [ libXpm libX11 libXext libXft libXinerama libjpeg ]
|
|
++ extraLibraries
|
|
++ stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
cmakeFlags = [ "-DSWIPL_INSTALL_IN_LIB=ON" ];
|
|
|
|
postInstall = builtins.concatStringsSep "\n"
|
|
( builtins.map (packInstall "$out") extraPacks
|
|
);
|
|
|
|
meta = {
|
|
homepage = "https://www.swi-prolog.org";
|
|
description = "A Prolog compiler and interpreter";
|
|
license = stdenv.lib.licenses.bsd2;
|
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.optionals (!withGui) stdenv.lib.platforms.darwin;
|
|
maintainers = [ stdenv.lib.maintainers.meditans ];
|
|
};
|
|
}
|