nixpkgs/pkgs/tools/graphics/gromit-mpx/default.nix

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

40 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
, gtk, glib, pcre, libappindicator, libpthreadstubs, xorg
, libxkbcommon, libepoxy, at-spi2-core, dbus, libdbusmenu
2020-08-02 06:00:35 +00:00
, wrapGAppsHook
2016-11-16 23:32:13 +00:00
}:
stdenv.mkDerivation rec {
pname = "gromit-mpx";
2023-11-03 06:08:38 +00:00
version = "1.5.1";
2016-11-16 23:32:13 +00:00
src = fetchFromGitHub {
owner = "bk138";
repo = "gromit-mpx";
2019-09-08 23:38:31 +00:00
rev = version;
2023-11-03 06:08:38 +00:00
sha256 = "sha256-6sjps0wbB0sTaQtehRmz2KBWxqk3pqJmQs9htqxmJwo=";
2016-11-16 23:32:13 +00:00
};
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ];
2016-11-16 23:32:13 +00:00
buildInputs = [
gtk glib pcre libappindicator libpthreadstubs
xorg.libXdmcp libxkbcommon libepoxy at-spi2-core
dbus libdbusmenu
2016-11-16 23:32:13 +00:00
];
meta = with lib; {
2016-11-16 23:32:13 +00:00
description = "Desktop annotation tool";
longDescription = ''
Gromit-MPX (GRaphics Over MIscellaneous Things) is a small tool
to make annotations on the screen.
'';
homepage = "https://github.com/bk138/gromit-mpx";
2016-11-16 23:32:13 +00:00
maintainers = with maintainers; [ pjones ];
platforms = platforms.linux;
license = licenses.gpl2Plus;
2023-11-23 02:51:17 +00:00
mainProgram = "gromit-mpx";
2016-11-16 23:32:13 +00:00
};
}