lol

asus-wmi-screenpad-ctl: init at 1.0.0 (#416563)

authored by

Aleksana and committed by
GitHub
620a00f4 4389cae4

+33
+33
pkgs/by-name/as/asus-wmi-screenpad-ctl/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + }: 7 + let 8 + version = "1.0.0"; 9 + in 10 + rustPlatform.buildRustPackage { 11 + pname = "asus-wmi-screenpad-ctl"; 12 + inherit version; 13 + 14 + src = fetchFromGitHub { 15 + repo = "asus-wmi-screenpad-ctl"; 16 + owner = "aldenparker"; 17 + tag = "v${version}"; 18 + hash = "sha256-TV61Kh8A7PFJPRONqeCK1xEK2AHfiV/eoZOCL0SZ+5M="; 19 + }; 20 + 21 + cargoHash = "sha256-ZluFoV9TclY6NOB5sHBN+1ht3zovmb4H+q7qT/Ywwmc="; 22 + 23 + passthru.updateScript = nix-update-script { }; 24 + 25 + meta = { 26 + description = "Brightness control program for the asus-wmi-screenpad kernel module"; 27 + mainProgram = "asus-wmi-screenpad-ctl"; 28 + homepage = "https://github.com/aldenparker/asus-wmi-screenpad-ctl"; 29 + license = lib.licenses.mit; 30 + maintainers = with lib.maintainers; [ aldenparker ]; 31 + platforms = lib.platforms.linux; 32 + }; 33 + }