mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
73e17a3594
He hasn't been heard of for years.
37 lines
856 B
Nix
37 lines
856 B
Nix
{ lib, mkDerivation, fetchurl, cmake, extra-cmake-modules, pkg-config, wrapGAppsHook
|
|
, kconfig, kinit, kdoctools, kio, kparts, kwidgetsaddons
|
|
, qtbase, qtsvg
|
|
, boost, graphviz
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "kgraphviewer";
|
|
version = "2.4.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/kgraphviewer/${version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1h6pgg89gvxl8gw7wmkabyqqrzad5pxyv5lsmn1fl4ir8lcc5q2l";
|
|
};
|
|
|
|
buildInputs = [
|
|
qtbase qtsvg
|
|
boost graphviz
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake extra-cmake-modules pkg-config wrapGAppsHook
|
|
kdoctools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
kconfig kinit kio kparts kwidgetsaddons
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A Graphviz dot graph viewer for KDE";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|