diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index a4696a16136f..77321baf7320 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -11828,6 +11828,12 @@ githubId = 30468956; name = "Lukas Heiligenbrunner"; }; + lukaslihotzki = { + email = "lukas@lihotzki.de"; + github = "lukaslihotzki"; + githubId = 10326063; + name = "Lukas Lihotzki"; + }; lukaswrz = { email = "lukas@wrz.one"; github = "lukaswrz"; diff --git a/pkgs/by-name/as/asahi-bless/package.nix b/pkgs/by-name/as/asahi-bless/package.nix new file mode 100644 index 000000000000..96943722a3c5 --- /dev/null +++ b/pkgs/by-name/as/asahi-bless/package.nix @@ -0,0 +1,26 @@ +{ lib +, fetchCrate +, rustPlatform +}: + +rustPlatform.buildRustPackage rec { + pname = "asahi-bless"; + version = "0.3.0"; + + src = fetchCrate { + inherit pname version; + hash = "sha256-pgl424SqeHODsjGwNRJtVHT6sKRlYxlXl3esEKK02jc="; + }; + + cargoHash = "sha256-ilblP8nqb/eY0+9Iua298M7NQKv+IwtdliGd9ZYAVaM="; + cargoDepsName = pname; + + meta = with lib; { + description = "A tool to select active boot partition on ARM Macs"; + homepage = "https://crates.io/crates/asahi-bless"; + license = licenses.mit; + maintainers = with maintainers; [ lukaslihotzki ]; + mainProgram = "asahi-bless"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/by-name/as/asahi-btsync/package.nix b/pkgs/by-name/as/asahi-btsync/package.nix new file mode 100644 index 000000000000..2b01e757086b --- /dev/null +++ b/pkgs/by-name/as/asahi-btsync/package.nix @@ -0,0 +1,26 @@ +{ lib +, fetchCrate +, rustPlatform +}: + +rustPlatform.buildRustPackage rec { + pname = "asahi-btsync"; + version = "0.2.0"; + + src = fetchCrate { + inherit pname version; + hash = "sha256-jp05WcwY1cWh4mBQj+3jRCZoG32OhDvTB84hOAGemX8="; + }; + + cargoHash = "sha256-XsgWqdwb0DDsK6HkaoVGQB/mm1U1TVzJM5q/gt9GryA="; + cargoDepsName = pname; + + meta = with lib; { + description = "A tool to sync Bluetooth pairing keys with macos on ARM Macs"; + homepage = "https://crates.io/crates/asahi-btsync"; + license = licenses.mit; + maintainers = with maintainers; [ lukaslihotzki ]; + mainProgram = "asahi-btsync"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/by-name/as/asahi-nvram/package.nix b/pkgs/by-name/as/asahi-nvram/package.nix new file mode 100644 index 000000000000..05f37e9c5cce --- /dev/null +++ b/pkgs/by-name/as/asahi-nvram/package.nix @@ -0,0 +1,26 @@ +{ lib +, fetchCrate +, rustPlatform +}: + +rustPlatform.buildRustPackage rec { + pname = "asahi-nvram"; + version = "0.2.1"; + + src = fetchCrate { + inherit pname version; + hash = "sha256-bFUFjHVTYj0eUmhijraOdeCvAt2UGX8+yyvooYN1Uo0="; + }; + + cargoHash = "sha256-WhySIQew8xxdwXLWkpvTYQZFiqCEPjEAjr7NVxfjDkU="; + cargoDepsName = pname; + + meta = with lib; { + description = "A tool to read and write nvram variables on ARM Macs"; + homepage = "https://crates.io/crates/asahi-nvram"; + license = licenses.mit; + maintainers = with maintainers; [ lukaslihotzki ]; + mainProgram = "asahi-nvram"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/by-name/as/asahi-wifisync/package.nix b/pkgs/by-name/as/asahi-wifisync/package.nix new file mode 100644 index 000000000000..deeac6d4b17e --- /dev/null +++ b/pkgs/by-name/as/asahi-wifisync/package.nix @@ -0,0 +1,26 @@ +{ 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"; + platforms = platforms.linux; + }; +}