mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
26 lines
633 B
Nix
26 lines
633 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "extest";
|
|
version = "1.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Supreeeme";
|
|
repo = "extest";
|
|
rev = version;
|
|
hash = "sha256-qdTF4n3uhkl3WFT+7bAlwCjxBx3ggTN6i3WzFg+8Jrw=";
|
|
};
|
|
|
|
cargoHash = "sha256-JZPiTzr9KaaqiXKhsGOYmYMtjNzPQzKhqyfSlbeqME8=";
|
|
|
|
meta = with lib; {
|
|
description = "X11 XTEST reimplementation primarily for Steam Controller on Wayland";
|
|
homepage = "https://github.com/Supreeeme/extest";
|
|
platforms = platforms.linux;
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.puffnfresh ];
|
|
};
|
|
}
|