biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / audio / pbpctrl / default.nix
blob1cb18d8318239f44e318ce2edb674d7e7c220f57
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , pkg-config
5 , dbus
6 , protobuf
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "pbpctrl";
11   version = "0.1.5";
13   src = fetchFromGitHub {
14     owner = "qzed";
15     repo = "${pname}";
16     rev = "v${version}";
17     hash = "sha256-tOdKXYfeO+HsYIDDU3fDb76ytRHVOcIqffEjFnLwOTI=";
18   };
20   cargoHash = "sha256-yP4tsXCAPE1KUDU5oBIejL4kACK1dNXK7Kmw37VMexM=";
22   nativeBuildInputs = [ pkg-config protobuf ];
23   buildInputs = [ dbus ];
25   meta = with lib; {
26     description = "Control Google Pixel Buds Pro from the Linux command line.";
27     homepage = "https://github.com/qzed/pbpctrl";
28     license = with licenses; [ asl20 mit ];
29     maintainers = [ maintainers.vanilla ];
30     platforms = platforms.linux;
31     mainProgram = "pbpctrl";
32   };