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

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

33 lines
741 B
Nix
Raw Normal View History

2023-05-10 10:56:55 +01:00
{ lib
, rustPlatform
2023-02-07 03:08:44 +00:00
, fetchFromGitHub
, pkg-config
, dbus
, protobuf
}:
rustPlatform.buildRustPackage rec {
pname = "pbpctrl";
2023-10-15 14:56:44 +01:00
version = "0.1.4";
2023-02-07 03:08:44 +00:00
src = fetchFromGitHub {
owner = "qzed";
repo = "${pname}";
2023-05-10 10:56:55 +01:00
rev = "v${version}";
2023-10-15 14:56:44 +01:00
hash = "sha256-91sdlnffL/HX+Y8e6T+ZCa7MAcf4fWE0NJGLgmK47o8=";
2023-02-07 03:08:44 +00:00
};
2023-10-15 14:56:44 +01:00
cargoHash = "sha256-U4//GvAEhrfOrivwW/6PbKHdWXGIuilPl7Zo17wnwDY=";
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;
};
}