boatswain: init at 0.3.0

This commit is contained in:
0xMRTT
2023-04-23 01:51:35 +02:00
committed by Anderson Torres
parent a3b8d13dcd
commit d7a8242535
2 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,64 @@
{ lib
, stdenv
, fetchFromGitLab
, meson
, ninja
, pkg-config
, gtk4
, libgee
, libadwaita
, wrapGAppsHook4
, appstream-glib
, desktop-file-utils
, libpeas
, libportal-gtk4
, gusb
, hidapi
, json-glib
, libsecret
, libsoup_3
}:
stdenv.mkDerivation rec {
pname = "boatswain";
version = "0.3.0";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = "boatswain";
rev = version;
hash = "sha256-Q16ooTaCgwbwEqa0iRzAoaS5OHCSi6dXaiVgC3uc/zc=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
wrapGAppsHook4
appstream-glib
desktop-file-utils
];
buildInputs = [
gtk4
libadwaita
libgee
libpeas
libportal-gtk4
gusb
hidapi
json-glib
libsecret
libsoup_3
];
meta = with lib; {
description = "Control Elgato Stream Deck devices.";
homepage = "https://gitlab.gnome.org/World/boatswain";
mainProgram = "boatswain";
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ _0xMRTT ];
};
}

View File

@@ -38389,6 +38389,8 @@ with pkgs;
avell-unofficial-control-center = python3Packages.callPackage ../applications/misc/avell-unofficial-control-center { };
boatswain = callPackage ../applications/misc/boatswain { };
beep = callPackage ../misc/beep { };
bees = callPackage ../tools/filesystems/bees { };