mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 17:04:42 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
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.hostPlatform.isDarwin;
|
|
};
|
|
}
|