2016-11-08 22:40:38 +01:00
|
|
|
{ stdenv, fetchurl, itstool, python2Packages, intltool, wrapGAppsHook
|
2016-08-14 13:52:23 +02:00
|
|
|
, libxml2, gobjectIntrospection, gtk3, gnome3, cairo, file
|
2015-01-25 08:59:05 +01:00
|
|
|
}:
|
2015-01-21 20:59:57 +01:00
|
|
|
|
2010-04-06 21:39:29 +02:00
|
|
|
|
2011-01-20 23:07:49 +01:00
|
|
|
let
|
2016-06-13 21:21:16 +02:00
|
|
|
minor = "3.16";
|
2016-12-20 23:56:29 +01:00
|
|
|
version = "${minor}.4";
|
2016-11-08 22:40:38 +01:00
|
|
|
inherit (python2Packages) python buildPythonApplication pycairo pygobject3;
|
2016-08-14 13:52:23 +02:00
|
|
|
in buildPythonApplication rec {
|
2011-01-20 23:07:49 +01:00
|
|
|
name = "meld-${version}";
|
2010-04-06 21:39:29 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-14 04:23:06 +02:00
|
|
|
url = "mirror://gnome/sources/meld/${minor}/meld-${version}.tar.xz";
|
2016-12-20 23:56:29 +01:00
|
|
|
sha256 = "0rwflfkfnb9ydnk4k591x0il29d4dvz95cjs2f279blx64lgki4k";
|
2010-04-06 21:39:29 +02:00
|
|
|
};
|
|
|
|
|
2015-01-25 08:59:05 +01:00
|
|
|
buildInputs = [
|
2016-08-14 13:52:23 +02:00
|
|
|
intltool wrapGAppsHook itstool libxml2
|
2015-01-25 08:59:05 +01:00
|
|
|
gnome3.gtksourceview gnome3.gsettings_desktop_schemas pycairo cairo
|
2016-07-30 09:46:18 +02:00
|
|
|
gnome3.defaultIconTheme gnome3.dconf file
|
2015-01-25 08:59:05 +01:00
|
|
|
];
|
2015-01-21 20:59:57 +01:00
|
|
|
propagatedBuildInputs = [ gobjectIntrospection pygobject3 gtk3 ];
|
2010-04-06 21:39:29 +02:00
|
|
|
|
2015-01-21 20:59:57 +01:00
|
|
|
installPhase = ''
|
2016-08-14 13:52:23 +02:00
|
|
|
mkdir -p "$out/lib/${python.libPrefix}/site-packages"
|
2015-01-21 20:59:57 +01:00
|
|
|
|
2016-08-14 13:52:23 +02:00
|
|
|
export PYTHONPATH="$out/lib/${python.libPrefix}/site-packages:$PYTHONPATH"
|
2015-01-21 20:59:57 +01:00
|
|
|
|
2016-08-14 13:52:23 +02:00
|
|
|
${python}/bin/${python.executable} setup.py install \
|
|
|
|
--install-lib=$out/lib/${python.libPrefix}/site-packages \
|
2015-01-21 20:59:57 +01:00
|
|
|
--prefix="$out"
|
|
|
|
|
2015-03-01 12:51:36 +01:00
|
|
|
mkdir -p $out/share/gsettings-schemas/$name
|
|
|
|
mv $out/share/glib-2.0 $out/share/gsettings-schemas/$name/
|
|
|
|
'';
|
|
|
|
|
2015-01-21 20:59:57 +01:00
|
|
|
patchPhase = ''
|
2015-07-24 19:03:11 +02:00
|
|
|
patchShebangs bin/meld
|
2010-04-06 21:39:29 +02:00
|
|
|
'';
|
|
|
|
|
2015-01-21 20:59:57 +01:00
|
|
|
pythonPath = [ gtk3 ];
|
|
|
|
|
2013-09-02 21:57:08 +02:00
|
|
|
meta = with stdenv.lib; {
|
2010-04-06 21:39:29 +02:00
|
|
|
description = "Visual diff and merge tool";
|
2015-07-24 19:03:11 +02:00
|
|
|
homepage = http://meldmerge.org/;
|
2015-01-21 20:59:57 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2014-09-09 15:21:04 +02:00
|
|
|
platforms = platforms.linux ++ stdenv.lib.platforms.darwin;
|
2016-06-25 19:03:13 +02:00
|
|
|
maintainers = [ maintainers.mimadrid ];
|
2010-04-06 21:39:29 +02:00
|
|
|
};
|
|
|
|
}
|