open-scq30: init at 1.10.6
This commit is contained in:
parent
00aa9078e0
commit
926c00c921
1 changed files with 74 additions and 0 deletions
74
pkgs/by-name/op/open-scq30/package.nix
Normal file
74
pkgs/by-name/op/open-scq30/package.nix
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkg-config
|
||||||
|
, protobuf
|
||||||
|
, wrapGAppsHook4
|
||||||
|
, cairo
|
||||||
|
, dbus
|
||||||
|
, gdk-pixbuf
|
||||||
|
, glib
|
||||||
|
, gtk4
|
||||||
|
, libadwaita
|
||||||
|
, pango
|
||||||
|
, stdenv
|
||||||
|
, darwin
|
||||||
|
, cargo-make
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "open-scq30";
|
||||||
|
version = "1.10.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Oppzippy";
|
||||||
|
repo = "OpenSCQ30";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-qYWLf0ns4YSq+yAspVTMvKQi861iUMJar2wjqm+BV/0=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkg-config
|
||||||
|
protobuf
|
||||||
|
wrapGAppsHook4
|
||||||
|
cargo-make
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
cairo
|
||||||
|
dbus
|
||||||
|
gdk-pixbuf
|
||||||
|
glib
|
||||||
|
gtk4
|
||||||
|
libadwaita
|
||||||
|
pango
|
||||||
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
darwin.apple_sdk.frameworks.AppKit
|
||||||
|
darwin.apple_sdk.frameworks.CoreGraphics
|
||||||
|
darwin.apple_sdk.frameworks.Foundation
|
||||||
|
];
|
||||||
|
|
||||||
|
cargoHash = "sha256-BQLNm+yyimBh7WomrccdQ2lvrQzCNXf4MEa1LlPhck0=";
|
||||||
|
|
||||||
|
INSTALL_PREFIX = placeholder "out";
|
||||||
|
|
||||||
|
# Requires headphones
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
cargo make --profile release build
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
cargo make --profile release install
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Cross platform application for controlling settings of Soundcore headphones.";
|
||||||
|
homepage = "https://github.com/Oppzippy/OpenSCQ30";
|
||||||
|
changelog = "https://github.com/Oppzippy/OpenSCQ30/blob/${src.rev}/CHANGELOG.md";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
maintainers = with maintainers; [ mkg20001 ];
|
||||||
|
mainProgram = "open-scq30";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue