summary refs log tree commit diff
path: root/pkgs/applications/graphics/kgraphviewer
diff options
context:
space:
mode:
authorLuca Bruno <luca.bruno@immobiliare.it>2014-09-03 17:00:13 +0200
committerLuca Bruno <luca.bruno@immobiliare.it>2014-09-03 17:04:22 +0200
commit83c968fa2caf30c7c512d8b18d84bb8edda3114e (patch)
tree4ae482ba3c59ff076817d5470585d561dd3b4dcc /pkgs/applications/graphics/kgraphviewer
parent9cf910cd51eb8bc14474d78e2bde5e275c305bbd (diff)
downloadnixpkgs-83c968fa2caf30c7c512d8b18d84bb8edda3114e.tar
nixpkgs-83c968fa2caf30c7c512d8b18d84bb8edda3114e.tar.gz
nixpkgs-83c968fa2caf30c7c512d8b18d84bb8edda3114e.tar.bz2
nixpkgs-83c968fa2caf30c7c512d8b18d84bb8edda3114e.tar.lz
nixpkgs-83c968fa2caf30c7c512d8b18d84bb8edda3114e.tar.xz
nixpkgs-83c968fa2caf30c7c512d8b18d84bb8edda3114e.tar.zst
nixpkgs-83c968fa2caf30c7c512d8b18d84bb8edda3114e.zip
Add new kgraphviewer and massif-visualizer packages
I chose the unstable versions because the stable versions
seemed too outdated to me. They work with kde 4.12 anyway.
Diffstat (limited to 'pkgs/applications/graphics/kgraphviewer')
-rw-r--r--pkgs/applications/graphics/kgraphviewer/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/kgraphviewer/default.nix b/pkgs/applications/graphics/kgraphviewer/default.nix
new file mode 100644
index 00000000000..21caf8f8002
--- /dev/null
+++ b/pkgs/applications/graphics/kgraphviewer/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, kdelibs, automoc4, boost, pkgconfig, graphviz, gettext }:
+
+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 automoc4 boost pkgconfig graphviz gettext ];
+
+  meta = with stdenv.lib; {
+    description = "A Graphviz dot graph viewer for KDE";
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.lethalman ];
+  };
+}
+