mendingwall: init at 0.3.8 (#533067)

This commit is contained in:
Oleksii Filonenko 2026-07-01 18:00:11 +00:00 committed by GitHub
commit 40e92dd6e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 63 additions and 0 deletions

View file

@ -13658,6 +13658,11 @@
githubId = 4611077;
name = "Raymond Gauthier";
};
jromer = {
github = "jelleromer";
githubId = 11951893;
name = "Jelle Römer";
};
jrpotter = {
email = "jrpotter2112@gmail.com";
github = "jrpotter";

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";
};
})