about summary refs log tree commit diff
path: root/pkgs/applications/graphics/kgraphviewer/default.nix
blob: 6eb57c3dd5f1dd5ca26db6084b6c87abd60bddc4 (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
, kdelibs, boost, graphviz
}:

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

  src = fetchurl {
    url = "mirror://kde/unstable/kgraphviewer/${version}/src/${name}.tar.xz";
    sha256 = "13zhjs57xavzrj4nrlqs35n35ihvzij7hgbszf5fhlp2a4d4rrqs";
  };

  buildInputs = [ kdelibs 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 ];
  };
}