Commit d7a82425 authored by 0xMRTT's avatar 0xMRTT Committed by Anderson Torres
Browse files

boatswain: init at 0.3.0

parent a3b8d13d
Loading
Loading
Loading
Loading
+64 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };