gnome2.gtkdoc -> gtk-doc

fix evaluation when `config.allowAliases` == false
(regression after https://github.com/NixOS/nixpkgs/pull/56791)
This commit is contained in:
volth
2019-03-09 11:06:23 +00:00
parent 9df6083b72
commit 4e2c477cf8
6 changed files with 14 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitLab, pam, xmlsec, autoreconfHook, pkgconfig, libxml2, gtkdoc, perl, gengetopt, bison, help2man }:
{ stdenv, fetchFromGitLab, pam, xmlsec, autoreconfHook, pkgconfig, libxml2, gtk-doc, perl, gengetopt, bison, help2man }:
let
securityDependency =
@@ -17,7 +17,7 @@ in stdenv.mkDerivation rec {
buildInputs = [ securityDependency libxml2 perl gengetopt bison ];
nativeBuildInputs = [ autoreconfHook gtkdoc help2man pkgconfig ];
nativeBuildInputs = [ autoreconfHook gtk-doc help2man pkgconfig ];
# man file generation fails when true
enableParallelBuilding = false;