blob: d9ab3c7fc437a18e960100add25d6c517a8d688c (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
cmake,
fetchFromGitHub,
graphviz,
jrl-cmakemodules,
lib,
libsForQt5,
stdenv,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "qgv";
version = "1.3.5";
src = fetchFromGitHub {
owner = "gepetto";
repo = "qgv";
rev = "v${finalAttrs.version}";
hash = "sha256-NUMCVqXw7euwxm4vISU8qYFfvV5HbAJsj/IjyxEjCPw=";
};
buildInputs = [
libsForQt5.qtbase
libsForQt5.qttools
];
nativeBuildInputs = [
cmake
libsForQt5.wrapQtAppsHook
];
propagatedBuildInputs = [
graphviz
jrl-cmakemodules
];
meta = {
description = "Interactive Qt graphViz display";
homepage = "https://github.com/gepetto/qgv";
license = lib.licenses.lgpl3Only;
maintainers = [ lib.maintainers.nim65s ];
platforms = lib.platforms.unix;
};
})
|