2022-01-07 16:12:34 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake }:
|
2015-08-03 23:50:54 +00:00
|
|
|
|
2021-07-17 17:56:23 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "p8-platform";
|
2021-07-17 17:56:23 +00:00
|
|
|
version = "2.1.0.1";
|
2015-08-03 23:50:54 +00:00
|
|
|
|
2022-01-07 16:12:34 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Pulse-Eight";
|
|
|
|
repo = "platform";
|
|
|
|
rev = "p8-platform-${version}";
|
|
|
|
sha256 = "sha256-zAI/AOLJAunv+cCQ6bOXrgkW+wl5frj3ktzx2cDeCCk=";
|
2015-08-03 23:50:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2015-08-03 23:50:54 +00:00
|
|
|
description = "Platform library for libcec and Kodi addons";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/Pulse-Eight/platform";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2021-03-11 18:41:30 +00:00
|
|
|
platforms = platforms.all;
|
2015-08-03 23:50:54 +00:00
|
|
|
maintainers = [ maintainers.titanous ];
|
|
|
|
};
|
|
|
|
}
|