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, fetchurl, pkgconfig, glib, libxml2, gtkdoc}:
{stdenv, fetchurl, pkgconfig, glib, libxml2, gtk-doc}:
let
pname = "gdome2";
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
hardeningDisable = [ "format" ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib libxml2 gtkdoc];
buildInputs = [ glib libxml2 gtk-doc ];
propagatedBuildInputs = [glib libxml2];
patches = [ ./xml-document.patch ];