mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
libdbusmenu-gtk3: do not depend on python2 (via gnome-doc-utils)
This commit is contained in:
parent
54a75e9109
commit
d58a42ad78
1 changed files with 2 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
{ stdenv, fetchurl, lib, file
|
||||
, pkgconfig, intltool
|
||||
, glib, dbus-glib, json-glib
|
||||
, gobject-introspection, vala, gnome-doc-utils
|
||||
, gobject-introspection, vala
|
||||
, gtkVersion ? null, gtk2 ? null, gtk3 ? null }:
|
||||
|
||||
with lib;
|
||||
|
@ -18,11 +18,10 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "12l7z8dhl917iy9h02sxmpclnhkdjryn08r8i4sr8l3lrlm4mk5r";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ vala pkgconfig intltool ];
|
||||
nativeBuildInputs = [ vala pkgconfig intltool gobject-introspection ];
|
||||
|
||||
buildInputs = [
|
||||
glib dbus-glib json-glib
|
||||
gobject-introspection gnome-doc-utils
|
||||
] ++ optional (gtkVersion != null) (if gtkVersion == "2" then gtk2 else gtk3);
|
||||
|
||||
postPatch = ''
|
||||
|
|
Loading…
Reference in a new issue