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,10 +1,10 @@
|
||||
{ stdenv, fetchurl, guile, autoconf, flex, fetchpatch }:
|
||||
{ stdenv, fetchurl, pkgconfig, guile, autoconf, flex, fetchpatch }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.1.11";
|
||||
name = "libmatheval-${version}";
|
||||
|
||||
nativeBuildInputs = [ autoconf flex ];
|
||||
nativeBuildInputs = [ pkgconfig autoconf flex ];
|
||||
buildInputs = [ guile ];
|
||||
|
||||
src = fetchurl {
|
||||
|
||||
Reference in New Issue
Block a user