hugin: move to openexr_3 (#367087)
[NixPkgs.git] / pkgs / applications / video / kodi / addons / steam-controller / default.nix
blob7d1c94fbc843443d228de28793807c2077824cb3
2   lib,
3   buildKodiBinaryAddon,
4   fetchFromGitHub,
5   libusb1,
6 }:
7 buildKodiBinaryAddon rec {
8   pname = namespace;
9   namespace = "peripheral.steamcontroller";
10   version = "20.0.2";
12   src = fetchFromGitHub {
13     owner = "kodi-game";
14     repo = namespace;
15     rev = "b3174673c6feb34325975b6c007581c39bf3e4a5";
16     sha256 = "sha256-Q+eJfbD4NpAPANm9Mx9/pD29L5tdS4gxhQqNufufYdw=";
17   };
19   extraBuildInputs = [ libusb1 ];
21   meta = with lib; {
22     description = "Binary addon for steam controller";
23     platforms = platforms.all;
24     maintainers = teams.kodi.members;
25   };