evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / as / asahi-btsync / package.nix
blobf776f86a2fc21282bd40ec1dd0018fed82479328
1 { lib
2 , fetchCrate
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "asahi-btsync";
8   version = "0.2.0";
10   src = fetchCrate {
11     inherit pname version;
12     hash = "sha256-jp05WcwY1cWh4mBQj+3jRCZoG32OhDvTB84hOAGemX8=";
13   };
15   cargoHash = "sha256-XsgWqdwb0DDsK6HkaoVGQB/mm1U1TVzJM5q/gt9GryA=";
16   cargoDepsName = pname;
18   meta = with lib; {
19     description = "Tool to sync Bluetooth pairing keys with macos on ARM Macs";
20     homepage = "https://crates.io/crates/asahi-btsync";
21     license = licenses.mit;
22     maintainers = with maintainers; [ lukaslihotzki ];
23     mainProgram = "asahi-btsync";
24     platforms = platforms.linux;
25   };