nixpkgs/pkgs/development/libraries/wt/default.nix

59 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, boost, pkg-config, doxygen, qt48Full, libharu
, pango, fcgi, firebird, libmysqlclient, postgresql, graphicsmagick, glew, openssl
2019-09-09 13:23:42 +00:00
, pcre, harfbuzz
}:
2016-08-08 12:52:55 +00:00
2018-01-04 20:18:48 +00:00
let
generic =
{ version, sha256 }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "wt";
inherit version;
2016-08-08 12:52:55 +00:00
2018-01-04 20:18:48 +00:00
src = fetchFromGitHub {
owner = "emweb";
2018-01-04 20:18:48 +00:00
repo = "wt";
rev = version;
inherit sha256;
};
2016-08-08 12:52:55 +00:00
nativeBuildInputs = [ cmake pkg-config ];
2018-01-04 20:18:48 +00:00
buildInputs = [
boost doxygen qt48Full libharu
pango fcgi firebird libmysqlclient postgresql graphicsmagick glew
2018-01-04 20:18:48 +00:00
openssl pcre
];
2016-08-08 12:52:55 +00:00
2018-01-04 20:18:48 +00:00
cmakeFlags = [
"-DWT_CPP_11_MODE=-std=c++11"
"--no-warn-unused-cli"
]
++ lib.optionals (graphicsmagick != null) [
"-DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick"
"-DGM_PREFIX=${graphicsmagick}"
]
++ lib.optional (harfbuzz != null)
"-DHARFBUZZ_INCLUDE_DIR=${harfbuzz.dev}/include"
++ lib.optional (libmysqlclient != null)
"-DMYSQL_PREFIX=${libmysqlclient}";
2016-08-08 12:52:55 +00:00
meta = with lib; {
2019-08-04 13:06:29 +00:00
homepage = "https://www.webtoolkit.eu/wt";
2018-01-04 20:18:48 +00:00
description = "C++ library for developing web applications";
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ juliendehos willibutz ];
};
};
in {
wt3 = generic {
2019-12-11 16:26:26 +00:00
version = "3.5.0";
sha256 = "1xcwzldbval5zrf7f3n2gkpscagg51cw2jp6p3q1yh6bi59haida";
2016-08-08 12:52:55 +00:00
};
2018-01-04 20:18:48 +00:00
wt4 = generic {
2019-12-11 16:26:56 +00:00
version = "4.2.0";
sha256 = "0zrrdjz0sa8hrmybjp4aap1lcqcqvsicd7dj49zj1m5k8gnfpm4v";
2018-01-04 20:18:48 +00:00
};
}