adw-bluetooth: init at 1.0.0 (#467511)

This commit is contained in:
Sandro
2025-12-04 00:38:18 +00:00
committed by GitHub
2 changed files with 54 additions and 0 deletions
+5
View File
@@ -8242,6 +8242,11 @@
githubId = 175898536;
keys = [ { fingerprint = "4319 2667 85A9 E6BD 9A84 4BC7 1313 15C2 0524 200C"; } ];
};
ezratweaver = {
name = "Ezra Weaver";
github = "ezratweaver";
githubId = 101545981;
};
ezrizhu = {
name = "Ezri Zhu";
email = "me@ezrizhu.com";
+49
View File
@@ -0,0 +1,49 @@
{
stdenv,
lib,
fetchFromGitHub,
meson,
ninja,
pkg-config,
blueprint-compiler,
typescript,
desktop-file-utils,
wrapGAppsHook4,
gjs,
libadwaita,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "adw-bluetooth";
version = "1.0.0";
src = fetchFromGitHub {
owner = "ezratweaver";
repo = "adw-bluetooth";
tag = finalAttrs.version;
hash = "sha256-/KJpB9i6tFDnB3C0tPtJtt8tTDfNftIkHmP1JSVSZNY=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
blueprint-compiler
typescript
desktop-file-utils
wrapGAppsHook4
];
buildInputs = [
gjs
libadwaita
];
meta = {
description = "GNOME Inspired LibAdwaita Bluetooth Applet";
homepage = "https://github.com/ezratweaver/adw-bluetooth";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ ezratweaver ];
};
})