9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
41 lines
1018 B
Nix
41 lines
1018 B
Nix
{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, wrapQtAppsHook
|
|
, qtbase, libuuid, libcap, uwsgi, grantlee, pcre
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cutelyst";
|
|
version = "2.14.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cutelyst";
|
|
repo = "cutelyst";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-RidUZqDnzRrgW/7LVF+BF01zNcf1cJ/kS7OF/t1Q65c=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
|
|
buildInputs = [ qtbase libuuid libcap uwsgi grantlee pcre ];
|
|
|
|
cmakeFlags = [
|
|
"-DPLUGIN_UWSGI=ON"
|
|
"-DPLUGIN_STATICCOMPRESSED=ON"
|
|
"-DPLUGIN_CSRFPROTECTION=ON"
|
|
"-DPLUGIN_VIEW_GRANTLEE=ON"
|
|
];
|
|
|
|
preBuild = ''
|
|
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}`pwd`/Cutelyst:`pwd`/EventLoopEPoll"
|
|
'';
|
|
|
|
postBuild = ''
|
|
unset LD_LIBRARY_PATH
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "C++ Web Framework built on top of Qt";
|
|
homepage = "https://cutelyst.org/";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
};
|
|
}
|