mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
59 lines
1.6 KiB
Nix
59 lines
1.6 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, boost, pkg-config, doxygen, qt48Full, libharu
|
|
, pango, fcgi, firebird, libmysqlclient, postgresql, graphicsmagick, glew, openssl
|
|
, pcre, harfbuzz
|
|
}:
|
|
|
|
let
|
|
generic =
|
|
{ version, sha256 }:
|
|
stdenv.mkDerivation {
|
|
pname = "wt";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "emweb";
|
|
repo = "wt";
|
|
rev = version;
|
|
inherit sha256;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [
|
|
boost doxygen qt48Full libharu
|
|
pango fcgi firebird libmysqlclient postgresql graphicsmagick glew
|
|
openssl pcre
|
|
];
|
|
|
|
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}";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.webtoolkit.eu/wt";
|
|
description = "C++ library for developing web applications";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ juliendehos willibutz ];
|
|
};
|
|
};
|
|
in {
|
|
wt3 = generic {
|
|
version = "3.5.0";
|
|
sha256 = "1xcwzldbval5zrf7f3n2gkpscagg51cw2jp6p3q1yh6bi59haida";
|
|
};
|
|
|
|
wt4 = generic {
|
|
version = "4.2.0";
|
|
sha256 = "0zrrdjz0sa8hrmybjp4aap1lcqcqvsicd7dj49zj1m5k8gnfpm4v";
|
|
};
|
|
}
|