Skip to content

Commit

Permalink
gromit-mpx: remove pcre (#371087)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbsds authored Jan 6, 2025
2 parents 23209a9 + 4aca1de commit d17d7cc
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions pkgs/by-name/gr/gromit-mpx/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
pkg-config,
gtk3,
glib,
pcre,
libappindicator-gtk3,
libpthreadstubs,
xorg,
Expand All @@ -17,6 +16,7 @@
libdbusmenu,
lz4,
wrapGAppsHook3,
nix-update-script,
}:

stdenv.mkDerivation (finalAttrs: {
Expand All @@ -26,7 +26,7 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchFromGitHub {
owner = "bk138";
repo = "gromit-mpx";
rev = finalAttrs.version;
tag = finalAttrs.version;
hash = "sha256-jHw4V2ZvfpT3PUihe/O+9BPsv+udFg5seMbYmxOz8Yk=";
};

Expand All @@ -39,7 +39,6 @@ stdenv.mkDerivation (finalAttrs: {
buildInputs = [
gtk3
glib
pcre
libappindicator-gtk3
libpthreadstubs
xorg.libXdmcp
Expand All @@ -51,20 +50,22 @@ stdenv.mkDerivation (finalAttrs: {
lz4
];

meta = with lib; {
passthru.updateScript = nix-update-script { };

meta = {
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";
changelog = "https://github.com/bk138/gromit-mpx/blob/${finalAttrs.version}/NEWS.md";
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
pjones
gepbird
];
platforms = platforms.linux;
license = licenses.gpl2Plus;
platforms = lib.platforms.linux;
license = lib.licenses.gpl2Plus;
mainProgram = "gromit-mpx";
};
})

0 comments on commit d17d7cc

Please sign in to comment.