Files
nixpkgs/pkgs/development/libraries/wt/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

84 lines
1.5 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
boost,
pkg-config,
doxygen,
qtbase,
libharu,
pango,
fcgi,
firebird,
libmysqlclient,
libpq,
graphicsmagick,
glew,
openssl,
harfbuzz,
icu,
}:
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
qtbase
libharu
pango
fcgi
firebird
libmysqlclient
libpq
graphicsmagick
glew
openssl
harfbuzz
icu
];
dontWrapQtApps = true;
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}";
meta = {
homepage = "https://www.webtoolkit.eu/wt";
description = "C++ library for developing web applications";
platforms = lib.platforms.linux;
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ juliendehos ];
};
};
in
{
wt4 = generic {
version = "4.12.0";
sha256 = "sha256-/SM/iTp/TQU8nq647UAHexFb3S5n6pk3lDkra3AEjis=";
};
}