gumbo: fix depends for strictDeps = true

Without the change `config.strictDepsByDefault = true` fails build as:

    configuring
    libtoolize
    ./autogen.sh: line 29: libtoolize: not found
This commit is contained in:
Sergei Trofimovich 2022-06-21 22:35:35 +01:00
parent 0105d57371
commit 6f0fb013cd

View file

@ -11,8 +11,8 @@ stdenv.mkDerivation rec {
sha256 = "0xslckwdh2i0g2qjsb6rnm8mjmbagvziz0hjlf7d1lbljfms1iw1";
};
nativeBuildInputs = [ autoconf automake ];
buildInputs = [ libtool ];
strictDeps = true;
nativeBuildInputs = [ autoconf automake libtool ];
preConfigure = "./autogen.sh";