mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-06 13:53:05 +00:00
bf995e3641
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
68 lines
1.1 KiB
Nix
68 lines
1.1 KiB
Nix
{ 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
|
|
, libpeas2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "boatswain";
|
|
version = "0.4.0";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "World";
|
|
repo = "boatswain";
|
|
rev = version;
|
|
hash = "sha256-Yqf7NJMyE6mg1zJJCLrIr6Emwt/nvlLHLAEtCXqFT8M=";
|
|
};
|
|
|
|
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
|
|
libpeas2
|
|
];
|
|
|
|
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 ];
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|