Merge pull request #36940 from pbogdan/libgksu-fix-build
libgksu: fix build
This commit is contained in:
commit
2469e7ef13
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, wrapGAppsHook, gtk2, gnome2, gnome3,
|
{ stdenv, fetchurl, pkgconfig, wrapGAppsHook, gtk2, gnome2, gnome3,
|
||||||
libstartup_notification, libgtop, perl, perlXMLParser,
|
libstartup_notification, libgtop, perl, perlXMLParser,
|
||||||
autoreconfHook, intltool, gtk-doc, docbook_xsl, xauth, sudo
|
autoreconfHook, intltool, docbook_xsl, xauth, sudo
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig autoreconfHook intltool gtk-doc docbook_xsl wrapGAppsHook
|
pkgconfig autoreconfHook intltool docbook_xsl wrapGAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -67,6 +67,10 @@ stdenv.mkDerivation rec {
|
||||||
intltoolize --force --copy --automake
|
intltoolize --force --copy --automake
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--disable-gtk-doc"
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A library for integration of su into applications";
|
description = "A library for integration of su into applications";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
|
Loading…
Reference in New Issue