meld: use python2

This commit is contained in:
Frederik Rietdijk 2016-11-08 22:40:38 +01:00
parent a18ac150a3
commit 559864a951

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, itstool, pythonPackages, intltool, wrapGAppsHook { stdenv, fetchurl, itstool, python2Packages, intltool, wrapGAppsHook
, libxml2, gobjectIntrospection, gtk3, gnome3, cairo, file , libxml2, gobjectIntrospection, gtk3, gnome3, cairo, file
}: }:
@ -6,7 +6,7 @@
let let
minor = "3.16"; minor = "3.16";
version = "${minor}.2"; version = "${minor}.2";
inherit (pythonPackages) python buildPythonApplication pycairo pygobject3; inherit (python2Packages) python buildPythonApplication pycairo pygobject3;
in buildPythonApplication rec { in buildPythonApplication rec {
name = "meld-${version}"; name = "meld-${version}";