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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
829 B
Nix
Raw Normal View History

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