From 23ff3dddba59b36be2f0dc0b318518a91674e967 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 13 Sep 2016 13:19:06 +0300 Subject: [PATCH] batti: fix eval --- pkgs/applications/misc/batti/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/batti/default.nix b/pkgs/applications/misc/batti/default.nix index 22f03419e5b..283e7f19907 100644 --- a/pkgs/applications/misc/batti/default.nix +++ b/pkgs/applications/misc/batti/default.nix @@ -4,7 +4,7 @@ , makeWrapper }: let - inherit (pythonPackages) dbus-python pygtk2 python; + inherit (pythonPackages) dbus-python pygtk python; in stdenv.mkDerivation rec { name = "batti-${version}"; @@ -16,7 +16,7 @@ in stdenv.mkDerivation rec { }; buildInputs = with stdenv.lib; - [ pkgconfig gettext python gtk2 pygtk2 dbus-python gdk_pixbuf upower makeWrapper ]; + [ pkgconfig gettext python gtk2 pygtk dbus-python gdk_pixbuf upower makeWrapper ]; configurePhase = "true";