mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
libindicate: stick with python2 because of pygtk dep
This commit is contained in:
parent
96191ad779
commit
8e3c19b2ab
1 changed files with 2 additions and 2 deletions
|
@ -4,14 +4,14 @@
|
|||
, pkgconfig, autoconf
|
||||
, glib, dbus-glib, libdbusmenu
|
||||
, gtkVersion ? "3", gtk2 ? null, gtk3 ? null
|
||||
, pythonPackages, gobject-introspection, vala, gnome-doc-utils
|
||||
, python2Packages, gobject-introspection, vala, gnome-doc-utils
|
||||
, monoSupport ? false, mono ? null, gtk-sharp-2_0 ? null
|
||||
}:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
inherit (pythonPackages) python pygobject2 pygtk;
|
||||
inherit (python2Packages) python pygobject2 pygtk;
|
||||
in stdenv.mkDerivation rec {
|
||||
name = let postfix = if gtkVersion == "2" && monoSupport then "sharp" else "gtk${gtkVersion}";
|
||||
in "libindicate-${postfix}-${version}";
|
||||
|
|
Loading…
Reference in a new issue