mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
kodiPackages.screensaver-asteroids: init at 22.0.2
This commit is contained in:
parent
95d71a415b
commit
449fb18359
2 changed files with 37 additions and 0 deletions
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
lib,
|
||||
rel,
|
||||
buildKodiBinaryAddon,
|
||||
fetchFromGitHub,
|
||||
pkg-config,
|
||||
glm,
|
||||
libGL,
|
||||
}:
|
||||
buildKodiBinaryAddon rec {
|
||||
pname = "screensaver-asteroids";
|
||||
namespace = "screensaver.asteroids";
|
||||
version = "22.0.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xbmc";
|
||||
repo = namespace;
|
||||
rev = "${version}-${rel}";
|
||||
hash = "sha256-Ri9dgdhJbHybdUkZeRE7X7SQMaV2JZCm7znAyDEa470=";
|
||||
};
|
||||
|
||||
extraNativeBuildInputs = [ pkg-config ];
|
||||
extraBuildInputs = [
|
||||
glm
|
||||
libGL
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/xbmc/screensaver.asteroids";
|
||||
description = "A screensaver that plays Asteroids";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.all;
|
||||
teams = [ teams.kodi ];
|
||||
};
|
||||
}
|
|
@ -137,6 +137,8 @@ let
|
|||
|
||||
robotocjksc = callPackage ../applications/video/kodi/addons/robotocjksc { };
|
||||
|
||||
screensaver-asteroids = callPackage ../applications/video/kodi/addons/screensaver-asteroids { };
|
||||
|
||||
skyvideoitalia = callPackage ../applications/video/kodi/addons/skyvideoitalia { };
|
||||
|
||||
svtplay = callPackage ../applications/video/kodi/addons/svtplay { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue