mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
mendingwall: init at 0.3.8 (#533067)
This commit is contained in:
commit
40e92dd6e4
2 changed files with 63 additions and 0 deletions
|
|
@ -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";
|
||||
|
|
|
|||
58
pkgs/by-name/me/mendingwall/package.nix
Normal file
58
pkgs/by-name/me/mendingwall/package.nix
Normal 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";
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue