about summary refs log tree commit diff
path: root/pkgs/applications/graphics/kgraphviewer/default.nix
blob: 6c2be6ea73c8e841a70054bfdfc5b47795263913 (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
{ stdenv, fetchurl, automoc4, cmake, gettext, perl, pkgconfig
, kdelibs4, boost, graphviz
}:

stdenv.mkDerivation rec {
  name = "kgraphviewer-${version}";
  version = "2.2.0";

  src = fetchurl {
    url = "mirror://kde/stable/kgraphviewer/${version}/src/${name}.tar.xz";
    sha256 = "1vs5x539mx26xqdljwzkh2bj7s3ydw4cb1wm9nlhgs18siw4gjl5";
  };

  buildInputs = [ kdelibs4 boost graphviz ];
  nativeBuildInputs = [ automoc4 cmake gettext perl pkgconfig ];

  meta = with stdenv.lib; {
    description = "A Graphviz dot graph viewer for KDE";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = [ maintainers.lethalman ];
  };
}