mendingwall: init at 0.3.8

This commit is contained in:
jromer
2026-06-21 00:36:01 +02:00
parent 65d2254ded
commit b5f4480bd8
+58
View File
@@ -0,0 +1,58 @@
{
lib,
stdenv,
fetchFromGitHub,
wrapGAppsHook4,
meson,
blueprint-compiler,
glib,
gtk4,
libadwaita,
gettext,
appstream,
desktop-file-utils,
pkg-config,
ninja,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "mendingwall";
version = "0.3.8";
src = fetchFromGitHub {
owner = "lawmurray";
repo = "mendingwall";
tag = "v${finalAttrs.version}";
hash = "sha256-bt2DvbtwUaad5j2XpySA4KBfI4953tc1bHRuUUkS84M=";
};
strictDeps = true;
__structuredAttrs = true;
nativeBuildInputs = [
meson
blueprint-compiler
gettext
appstream
desktop-file-utils
pkg-config
ninja
wrapGAppsHook4
];
buildInputs = [
glib
gtk4
libadwaita
];
meta = with lib; {
description = "Fix theme and menu inconsistencies when using multiple desktop environments";
homepage = "https://mendingwall.indii.org/";
changelog = "https://github.com/lawmurray/mendingwall/releases/tag/v${finalAttrs.version}";
license = licenses.gpl3Plus;
maintainers = [ maintainers.jromer ];
platforms = platforms.linux;
mainProgram = "mendingwall";
};
})