forked from mirrors/nixpkgs
commit
d02d062c9b
|
@ -1,18 +1,18 @@
|
|||
{ stdenv, fetchurl, itstool, python2Packages, intltool, wrapGAppsHook
|
||||
{ stdenv, fetchurl, itstool, python3Packages, intltool, wrapGAppsHook
|
||||
, libxml2, gobjectIntrospection, gtk3, gnome3, cairo, file
|
||||
}:
|
||||
|
||||
|
||||
let
|
||||
minor = "3.16";
|
||||
version = "${minor}.4";
|
||||
inherit (python2Packages) python buildPythonApplication pycairo pygobject3;
|
||||
minor = "3.18";
|
||||
version = "${minor}.0";
|
||||
inherit (python3Packages) python buildPythonApplication pycairo pygobject3;
|
||||
in buildPythonApplication rec {
|
||||
name = "meld-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/meld/${minor}/meld-${version}.tar.xz";
|
||||
sha256 = "0rwflfkfnb9ydnk4k591x0il29d4dvz95cjs2f279blx64lgki4k";
|
||||
sha256 = "0gi2jzgsrd5q2icyp6wphbn532ddg82nxhfxlffkniy7wnqmi0c4";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
|
@ -41,6 +41,8 @@ in buildPythonApplication rec {
|
|||
|
||||
pythonPath = [ gtk3 ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Visual diff and merge tool";
|
||||
homepage = http://meldmerge.org/;
|
||||
|
|
|
@ -30,6 +30,8 @@ python2Packages.buildPythonApplication rec {
|
|||
wrapPythonProgramsIn $cli "$out $pythonPath"
|
||||
'';
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Graphical tools for working with version control systems";
|
||||
homepage = http://rabbitvcs.org/;
|
||||
|
|
Loading…
Reference in a new issue