about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/version-management/diffuse/default.nix
blob: fa6d4fe1890df216fb69c1527f8a9bb7c07a30db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, fetchurl, python27Packages, makeWrapper }:

let
  inherit (python27Packages) pygtk python;
in stdenv.mkDerivation rec {
  version = "0.4.8";
  name = "diffuse-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/project/diffuse/diffuse/${version}/${name}.tar.bz2";
    sha256 = "0ayz8bywmk1z3zicb0a7hbxliqpc7xym60s0mawzqllkpadvgly1";
  };

  buildInputs = [ python pygtk makeWrapper ];

  buildPhase = ''
    python ./install.py --prefix="$out" --sysconfdir="$out/etc" --pythonbin="${python}/bin/python"
    wrapProgram "$out/bin/diffuse" --prefix PYTHONPATH : $PYTHONPATH:${pygtk}/lib/${python.libPrefix}/site-packages/gtk-2.0
  '';

  # no-op, everything is done in buildPhase
  installPhase = "true";

  # NOTE: diffuse installs a .desktop file itself

  meta = with stdenv.lib; {
    description = "Graphical diff and merge tool";
    homepage = http://diffuse.sourceforge.net/;
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = [ maintainers.bjornfor ];
  };
}