summary refs log tree commit diff
path: root/pkgs/development/libraries/wt/default.nix
blob: 3adf4f1497f889ca048700161eef227fd41acb89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ stdenv, fetchFromGitHub, cmake, boost, pkgconfig, doxygen, qt48Full, libharu
, pango, fcgi, firebird, libmysql, postgresql, graphicsmagick, glew, openssl
, pcre
}:

stdenv.mkDerivation rec {
  name = "wt-${version}";
  version = "4.0.0";

  src = fetchFromGitHub {
    owner = "kdeforche";
    repo = "wt";
    rev = version;
    sha256 = "1451xxvnx6mlvxg0jxlr1mfv5v18h2214kijk5kacilqashfc43i";
  };

  enableParallelBuilding = true;

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [
    cmake boost doxygen qt48Full libharu
    pango fcgi firebird libmysql postgresql graphicsmagick glew
    openssl pcre
  ];

  cmakeFlags = [
    "-DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick"
    "-DWT_CPP_11_MODE=-std=c++11"
    "-DGM_PREFIX=${graphicsmagick}"
    "-DMYSQL_PREFIX=${libmysql.dev}"
    "--no-warn-unused-cli"
  ];

  meta = with stdenv.lib; {
    homepage = https://www.webtoolkit.eu/wt;
    description = "C++ library for developing web applications";
    platforms = platforms.linux;
    license = licenses.gpl2;
    maintainers = [ maintainers.juliendehos ];
  };
}