nixpkgs/pkgs/applications/graphics/qvge/default.nix

40 lines
756 B
Nix
Raw Normal View History

2020-11-12 22:14:58 +00:00
{ lib
, mkDerivation
, fetchFromGitHub
, substituteAll
, qmake
, qtx11extras
, graphviz
}:
mkDerivation rec {
pname = "qvge";
2021-05-23 00:37:25 +00:00
version = "0.6.3";
2020-11-12 22:14:58 +00:00
src = fetchFromGitHub {
owner = "ArsMasiuk";
repo = pname;
rev = "v${version}";
2021-05-23 00:37:25 +00:00
sha256 = "sha256-rtbUAp3l0VZsu+D9HCHM3q0UkDLflw50rYRq/LP4Wu4=";
2020-11-12 22:14:58 +00:00
};
2021-05-23 00:37:25 +00:00
sourceRoot = "${src.name}/src";
2020-11-12 22:14:58 +00:00
patches = (substituteAll {
src = ./set-graphviz-path.patch;
inherit graphviz;
});
nativeBuildInputs = [ qmake ];
buildInputs = [ qtx11extras ];
meta = with lib; {
description = "Qt Visual Graph Editor";
homepage = "https://github.com/ArsMasiuk/qvge";
license = licenses.mit;
maintainers = with maintainers; [ sikmir ];
platforms = with platforms; linux;
};
}