summary refs log tree commit diff
path: root/pkgs/development/tools/misc/xxdiff/tip.nix
blob: 844758c0f0650e772283bb7cc1e8671746a6cd25 (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
34
35
36
{ stdenv, fetchFromBitbucket, qtbase, flex, bison, docutils }:

stdenv.mkDerivation rec {
  name = "xxdiff-4.0.1.20170623";

  src = fetchFromBitbucket {
    owner = "blais";
    repo = "xxdiff";
    rev = "5e5f885dfc43559549a81c59e9e8c9525306356a";
    sha256 = "0gbvxrkwkbvag3298j89smszghpr8ilxxfb0cvsknfqdf15b296w";
  };

  nativeBuildInputs = [ flex bison docutils ];

  buildInputs = [ qtbase ];

  # Fixes build with Qt 5.9
  NIX_CFLAGS_COMPILE = [ "-std=c++11" ];

  preConfigure = ''
    cd src
    make -f Makefile.bootstrap
  '';

  postInstall = ''
    install -D ../bin/xxdiff $out/bin/xxdiff
  '';

  meta = with stdenv.lib; {
    homepage = http://furius.ca/xxdiff/;
    description = "Graphical file and directories comparator and merge tool";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ pSub raskin ];
  };
}