Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
721 B
Nix
37 lines
721 B
Nix
{
|
|
lib,
|
|
rel,
|
|
buildKodiBinaryAddon,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
glm,
|
|
libGL,
|
|
}:
|
|
|
|
buildKodiBinaryAddon rec {
|
|
pname = "visualization-pictureit";
|
|
namespace = "visualization.pictureit";
|
|
version = "21.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xbmc";
|
|
repo = namespace;
|
|
rev = "${version}-${rel}";
|
|
hash = "sha256-jFRv/fYR/98jcP9GCRVYu2EQIdWQItzYrEoXW/RF+bA=";
|
|
};
|
|
|
|
extraBuildInputs = [
|
|
pkg-config
|
|
libGL
|
|
];
|
|
|
|
propagatedBuildInputs = [ glm ];
|
|
meta = with lib; {
|
|
homepage = "https://github.com/xbmc/visualization.pictureit";
|
|
description = "PictureIt visualization for kodi";
|
|
platforms = platforms.all;
|
|
license = licenses.gpl2Only;
|
|
teams = [ teams.kodi ];
|
|
};
|
|
}
|