nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 27 lines 640 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 rustPlatform, 5}: 6 7rustPlatform.buildRustPackage rec { 8 pname = "extest"; 9 version = "1.0.2"; 10 11 src = fetchFromGitHub { 12 owner = "Supreeeme"; 13 repo = "extest"; 14 rev = version; 15 hash = "sha256-qdTF4n3uhkl3WFT+7bAlwCjxBx3ggTN6i3WzFg+8Jrw="; 16 }; 17 18 cargoHash = "sha256-82jG4tHqc5FQFGp4NANk2oJjiHc0+ekVdbdWlqjzaj8="; 19 20 meta = { 21 description = "X11 XTEST reimplementation primarily for Steam Controller on Wayland"; 22 homepage = "https://github.com/Supreeeme/extest"; 23 platforms = lib.platforms.linux; 24 license = lib.licenses.mit; 25 maintainers = [ lib.maintainers.puffnfresh ]; 26 }; 27}