mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
39 lines
908 B
Nix
39 lines
908 B
Nix
{ stdenv, mkDerivation, fetchurl, cmake, extra-cmake-modules, pkgconfig, 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 pkgconfig wrapGAppsHook
|
|
kdoctools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
kconfig kinit kio kparts kwidgetsaddons
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Graphviz dot graph viewer for KDE";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ lethalman ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|