slop: Add pkgconfig as build dependency

Fix: "Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)"
This commit is contained in:
Michael Weiss 2017-12-08 01:18:17 +01:00
parent 2a9c2915d4
commit b627c237ec

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake
{ stdenv, fetchFromGitHub, cmake, pkgconfig
, glew, glm, mesa, libX11, libXext, libXrender, cppcheck, icu}:
stdenv.mkDerivation rec {
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
sha256 = "0is3mh2d1jqgvv72v5x92w23yf26n8n384nbr1b6cn883aw8j7jz";
};
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ glew glm mesa libX11 libXext libXrender icu ]
++ stdenv.lib.optional doCheck cppcheck;