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

57 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, boost, pkgconfig, doxygen, qt48Full, libharu
, pango, fcgi, firebird, libmysqlclient, postgresql, graphicsmagick, glew, openssl
2019-09-09 15:23:42 +02:00
, pcre, harfbuzz
}:
2016-08-08 14:52:55 +02:00
2018-01-04 21:18:48 +01:00
let
generic =
{ version, sha256 }:
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "wt";
inherit version;
2016-08-08 14:52:55 +02:00
2018-01-04 21:18:48 +01:00
src = fetchFromGitHub {
owner = "emweb";
2018-01-04 21:18:48 +01:00
repo = "wt";
rev = version;
inherit sha256;
};
2016-08-08 14:52:55 +02:00
2018-01-04 21:18:48 +01:00
enableParallelBuilding = true;
2016-08-08 14:52:55 +02:00
2018-01-04 21:18:48 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
cmake boost doxygen qt48Full libharu
pango fcgi firebird libmysqlclient postgresql graphicsmagick glew
2018-01-04 21:18:48 +01:00
openssl pcre
];
2016-08-08 14:52:55 +02:00
2018-01-04 21:18:48 +01:00
cmakeFlags = [
"-DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick"
"-DWT_CPP_11_MODE=-std=c++11"
"-DGM_PREFIX=${graphicsmagick}"
"-DMYSQL_PREFIX=${libmysqlclient}"
2019-09-09 15:23:42 +02:00
"-DHARFBUZZ_INCLUDE_DIR=${harfbuzz.dev}/include"
2018-01-04 21:18:48 +01:00
"--no-warn-unused-cli"
];
2016-08-08 14:52:55 +02:00
2018-01-04 21:18:48 +01:00
meta = with stdenv.lib; {
2019-08-04 15:06:29 +02:00
homepage = "https://www.webtoolkit.eu/wt";
2018-01-04 21:18:48 +01:00
description = "C++ library for developing web applications";
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ juliendehos willibutz ];
};
};
in {
wt3 = generic {
2019-09-09 15:23:42 +02:00
version = "3.4.1";
sha256 = "1bsx7hmy6g2x9p3vl5xw9lv1xk891pnvs93a87s15g257gznkjmj";
2016-08-08 14:52:55 +02:00
};
2018-01-04 21:18:48 +01:00
wt4 = generic {
2019-09-09 15:26:22 +02:00
version = "4.1.1";
sha256 = "1f1imx5kbpqlysrqx5h75hf2f8pkq972rz42x0pl6cxbnsyzngid";
2018-01-04 21:18:48 +01:00
};
}