mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
27 lines
649 B
Nix
27 lines
649 B
Nix
{ 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 = "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";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|