cscope: remove unused dependency on pkgconfig
This commit is contained in:
parent
2dc6e41147
commit
718678bba8
@ -1,4 +1,4 @@
|
|||||||
{ fetchurl, stdenv, ncurses, pkgconfig
|
{ fetchurl, stdenv, ncurses
|
||||||
, emacsSupport ? true, emacs
|
, emacsSupport ? true, emacs
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||||||
configureFlags = "--with-ncurses=${ncurses.dev}";
|
configureFlags = "--with-ncurses=${ncurses.dev}";
|
||||||
|
|
||||||
buildInputs = [ ncurses ];
|
buildInputs = [ ncurses ];
|
||||||
nativeBuildInputs = [ pkgconfig ] + stdenv.lib.optional emacsSupport emacs;
|
nativeBuildInputs = stdenv.lib.optional emacsSupport emacs;
|
||||||
|
|
||||||
postInstall = stdenv.lib.optionalString emacsSupport ''
|
postInstall = stdenv.lib.optionalString emacsSupport ''
|
||||||
cd "contrib/xcscope"
|
cd "contrib/xcscope"
|
||||||
|
Loading…
Reference in New Issue
Block a user