Skip to content

Commit

Permalink
asahi-wifisync: init at 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaslihotzki committed Apr 7, 2024
1 parent c82ca85 commit f5394fb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/by-name/as/asahi-wifisync/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ lib
, fetchCrate
, rustPlatform
}:

rustPlatform.buildRustPackage rec {
pname = "asahi-wifisync";
version = "0.2.0";

src = fetchCrate {
inherit pname version;
hash = "sha256-wKd6rUUnegvl6cHODVQlllaOXuAGlmwx9gr73I/2l/c=";
};

cargoHash = "sha256-UF1T0uAFO/ydTWigYXOP9Ju1qgV1oBmJuXSq4faSzJM=";
cargoDepsName = pname;

meta = with lib; {
description = "A tool to sync Wifi passwords with macos on ARM Macs";
homepage = "https://crates.io/crates/asahi-wifisync";
license = licenses.mit;
maintainers = with maintainers; [ lukaslihotzki ];
mainProgram = "asahi-wifisync";
};
}

0 comments on commit f5394fb

Please sign in to comment.