Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 26 lines 559 B view raw
1{ 2 lib, 3 buildKodiBinaryAddon, 4 fetchFromGitHub, 5 libusb1, 6}: 7buildKodiBinaryAddon rec { 8 pname = namespace; 9 namespace = "peripheral.steamcontroller"; 10 version = "20.0.2"; 11 12 src = fetchFromGitHub { 13 owner = "kodi-game"; 14 repo = namespace; 15 rev = "b3174673c6feb34325975b6c007581c39bf3e4a5"; 16 sha256 = "sha256-Q+eJfbD4NpAPANm9Mx9/pD29L5tdS4gxhQqNufufYdw="; 17 }; 18 19 extraBuildInputs = [ libusb1 ]; 20 21 meta = with lib; { 22 description = "Binary addon for steam controller"; 23 platforms = platforms.all; 24 teams = [ teams.kodi ]; 25 }; 26}