mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
mailnag: use python2
This commit is contained in:
parent
58c41ecd35
commit
760a36372e
1 changed files with 4 additions and 4 deletions
|
@ -1,9 +1,9 @@
|
||||||
{ stdenv, fetchurl, gettext, gtk3, pythonPackages
|
{ stdenv, fetchurl, gettext, gtk3, python2Packages
|
||||||
, gdk_pixbuf, libnotify, gst_all_1
|
, gdk_pixbuf, libnotify, gst_all_1
|
||||||
, libgnome_keyring3 ? null, networkmanager ? null
|
, libgnome_keyring3 ? null, networkmanager ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
python2Packages.buildPythonApplication rec {
|
||||||
name = "mailnag-${version}";
|
name = "mailnag-${version}";
|
||||||
version = "1.1.0";
|
version = "1.1.0";
|
||||||
|
|
||||||
|
@ -13,8 +13,8 @@ pythonPackages.buildPythonApplication rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gettext gtk3 pythonPackages.pygobject3 pythonPackages.dbus-python
|
gettext gtk3 python2Packages.pygobject3 python2Packages.dbus-python
|
||||||
pythonPackages.pyxdg gdk_pixbuf libnotify gst_all_1.gstreamer
|
python2Packages.pyxdg gdk_pixbuf libnotify gst_all_1.gstreamer
|
||||||
gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good
|
gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good
|
||||||
gst_all_1.gst-plugins-bad libgnome_keyring3 networkmanager
|
gst_all_1.gst-plugins-bad libgnome_keyring3 networkmanager
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue