gnome2.gtkdoc -> gtk-doc
fix evaluation when `config.allowAliases` == false (regression after https://github.com/NixOS/nixpkgs/pull/56791)
This commit is contained in:
@@ -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 ];
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, fetchFromBitbucket, autoreconfHook, gtkdoc, gettext
|
||||
{stdenv, fetchurl, fetchFromBitbucket, autoreconfHook, gtk-doc, gettext
|
||||
, pkgconfig, glib, libxml2, gobject-introspection, gnome-common, unzip
|
||||
}:
|
||||
|
||||
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ gettext glib libxml2 gobject-introspection gnome-common
|
||||
unzip ];
|
||||
nativeBuildInputs = [ autoreconfHook gtkdoc gettext pkgconfig ];
|
||||
nativeBuildInputs = [ autoreconfHook gtk-doc gettext pkgconfig ];
|
||||
|
||||
meta = {
|
||||
inherit version;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchurl, pkgconfig
|
||||
, dbus, dbus-glib, gtk3, gobject-introspection
|
||||
, gtkdoc, docbook_xml_dtd_45, docbook_xsl
|
||||
, gtk-doc, docbook_xml_dtd_45, docbook_xsl
|
||||
, libxslt, libxml2 }:
|
||||
|
||||
with stdenv.lib;
|
||||
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||
minorVer = "2";
|
||||
version = "${majorVer}.${minorVer}";
|
||||
name = "libunique3-${version}";
|
||||
srcName = "libunique-${version}";
|
||||
srcName = "libunique-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.gnome.org/pub/GNOME/sources/libunique/${majorVer}/${srcName}.tar.xz";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ dbus dbus-glib gtk3 gobject-introspection gtkdoc docbook_xml_dtd_45 docbook_xsl libxslt libxml2 ];
|
||||
buildInputs = [ dbus dbus-glib gtk3 gobject-introspection gtk-doc docbook_xml_dtd_45 docbook_xsl libxslt libxml2 ];
|
||||
|
||||
meta = {
|
||||
homepage = https://wiki.gnome.org/Attic/LibUnique;
|
||||
|
||||
Reference in New Issue
Block a user