3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/wt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, boost, pkg-config, doxygen, qt48Full, libharu
, pango, fcgi, firebird, libmysqlclient, postgresql, graphicsmagick, glew, openssl
2021-12-25 18:38:47 +00:00
, pcre, harfbuzz, icu
}:
2016-08-08 13:52:55 +01:00
2018-01-04 20:18:48 +00:00
let
generic =
{ version, sha256 }:
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
2019-08-13 22:52:01 +01:00
pname = "wt";
inherit version;
2016-08-08 13:52:55 +01: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 13:52:55 +01: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
2021-12-25 18:38:47 +00:00
openssl pcre harfbuzz icu
2018-01-04 20:18:48 +00:00
];
2016-08-08 13:52:55 +01: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 (libmysqlclient != null)
"-DMYSQL_PREFIX=${libmysqlclient}";
2016-08-08 13:52:55 +01:00
meta = with lib; {
2019-08-04 14:06:29 +01: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 {
2021-12-25 18:38:47 +00:00
version = "3.7.1";
sha256 = "19gf5lbrc5shpvcdyzjh20k8zdj4cybxqvkhwqfl9rvhw89qr11k";
2016-08-08 13:52:55 +01:00
};
2018-01-04 20:18:48 +00:00
wt4 = generic {
2021-12-25 18:38:47 +00:00
version = "4.6.1";
sha256 = "04pv4kb8d576bfnd9kjc3cfjls9cm3cgpaiabwb3iyq9z0w585gh";
2018-01-04 20:18:48 +00:00
};
}