nixpkgs/pkgs/applications/audio/pbpctrl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
770 B
Nix
Raw Normal View History

2023-05-10 09:56:55 +00:00
{ lib
, rustPlatform
2023-02-07 03:08:44 +00:00
, fetchFromGitHub
, pkg-config
, dbus
, protobuf
}:
rustPlatform.buildRustPackage rec {
pname = "pbpctrl";
2023-11-11 03:19:31 +00:00
version = "0.1.5";
2023-02-07 03:08:44 +00:00
src = fetchFromGitHub {
owner = "qzed";
repo = "${pname}";
2023-05-10 09:56:55 +00:00
rev = "v${version}";
2023-11-11 03:19:31 +00:00
hash = "sha256-tOdKXYfeO+HsYIDDU3fDb76ytRHVOcIqffEjFnLwOTI=";
2023-02-07 03:08:44 +00:00
};
2023-11-11 03:19:31 +00:00
cargoHash = "sha256-yP4tsXCAPE1KUDU5oBIejL4kACK1dNXK7Kmw37VMexM=";
2023-02-07 03:08:44 +00:00
nativeBuildInputs = [ pkg-config protobuf ];
buildInputs = [ dbus ];
meta = with lib; {
description = "Control Google Pixel Buds Pro from the Linux command line.";
homepage = "https://github.com/qzed/pbpctrl";
license = with licenses; [ asl20 mit ];
maintainers = [ maintainers.vanilla ];
platforms = platforms.linux;
2024-02-11 02:19:15 +00:00
mainProgram = "pbpctrl";
2023-02-07 03:08:44 +00:00
};
}