guile rev-deps: fix build by adding pkgconfig
Without it packages fail to find the headers, after guile has split
them into a separate output in 218713a.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, guile, buildEnv
|
||||
{ stdenv, fetchurl, pkgconfig, guile, buildEnv
|
||||
, SDL, SDL_image, SDL_ttf, SDL_mixer
|
||||
}:
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "126n4rd0ydh6i2s11ari5k85iivradlf12zq13b34shf9k1wn5am";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ guile ];
|
||||
nativeBuildInputs = [ pkgconfig guile ];
|
||||
|
||||
buildInputs = [
|
||||
SDL.dev SDL_image SDL_ttf SDL_mixer
|
||||
|
||||
Reference in New Issue
Block a user