summary refs log tree commit diff
path: root/pkgs/development/libraries/cutelyst
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-01-04 13:52:47 +0100
committerRobin Gloster <mail@glob.in>2019-01-04 14:16:45 +0100
commit46adbcde4875779d18acd752fed1cb25bf03bb84 (patch)
tree4018d386fab239053a5a3e87ca26ce47770c4292 /pkgs/development/libraries/cutelyst
parente3bc81f5315798573b6963ea359efe74bb3fc30e (diff)
downloadnixpkgs-46adbcde4875779d18acd752fed1cb25bf03bb84.tar
nixpkgs-46adbcde4875779d18acd752fed1cb25bf03bb84.tar.gz
nixpkgs-46adbcde4875779d18acd752fed1cb25bf03bb84.tar.bz2
nixpkgs-46adbcde4875779d18acd752fed1cb25bf03bb84.tar.lz
nixpkgs-46adbcde4875779d18acd752fed1cb25bf03bb84.tar.xz
nixpkgs-46adbcde4875779d18acd752fed1cb25bf03bb84.tar.zst
nixpkgs-46adbcde4875779d18acd752fed1cb25bf03bb84.zip
cutelyst: fix build
Cutelyst misses `pcre.h` to compile, adding `pkgs.pcre` as build input
fixes the compilation.

This unbreaks `virtlyst` and the corresponding module as well.

See also https://hydra.nixos.org/build/86293236
Diffstat (limited to 'pkgs/development/libraries/cutelyst')
-rw-r--r--pkgs/development/libraries/cutelyst/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/cutelyst/default.nix b/pkgs/development/libraries/cutelyst/default.nix
index 6cb003720bb..f4a10452eef 100644
--- a/pkgs/development/libraries/cutelyst/default.nix
+++ b/pkgs/development/libraries/cutelyst/default.nix
@@ -1,5 +1,6 @@
 { stdenv, lib, fetchFromGitHub, cmake, pkgconfig, makeWrapper
-, qtbase, libuuid, libcap, uwsgi, grantlee }:
+, qtbase, libuuid, libcap, uwsgi, grantlee, pcre
+}:
 
 stdenv.mkDerivation rec {
   name = "cutelyst-${version}";
@@ -13,7 +14,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ cmake pkgconfig makeWrapper ];
-  buildInputs = [ qtbase libuuid libcap uwsgi grantlee ];
+  buildInputs = [ qtbase libuuid libcap uwsgi grantlee pcre ];
 
   cmakeFlags = [
     "-DPLUGIN_UWSGI=ON"