12 stdenv.mkDerivation rec {
16 src = fetchFromGitHub {
20 sha256 = "sha256-rtbUAp3l0VZsu+D9HCHM3q0UkDLflw50rYRq/LP4Wu4=";
23 sourceRoot = "${src.name}/src";
25 patches = (substituteAll {
26 src = ./set-graphviz-path.patch;
30 nativeBuildInputs = [ wrapQtAppsHook qmake ];
32 buildInputs = if stdenv.hostPlatform.isDarwin then [ qtsvg ] else [ qtx11extras ];
35 description = "Qt Visual Graph Editor";
36 mainProgram = "qvgeapp";
37 homepage = "https://github.com/ArsMasiuk/qvge";
38 license = licenses.mit;
39 maintainers = with maintainers; [ sikmir ];
40 platforms = platforms.unix;