Skip to content

Commit

Permalink
slop: Add pkgconfig as build dependency
Browse files Browse the repository at this point in the history
Fix: "Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)"
  • Loading branch information
primeos committed Dec 13, 2017
1 parent 2a9c291 commit b627c23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/misc/slop/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake
{ stdenv, fetchFromGitHub, cmake, pkgconfig
, glew, glm, mesa, libX11, libXext, libXrender, cppcheck, icu}:

stdenv.mkDerivation rec {
Expand All @@ -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;

Expand Down

0 comments on commit b627c23

Please sign in to comment.