mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-13 11:30:35 +08:00
boatswain: init at 0.3.0
This commit is contained in:
64
pkgs/applications/misc/boatswain/default.nix
Normal file
64
pkgs/applications/misc/boatswain/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user