2015-08-04 00:50:54 +01:00
|
|
|
{ stdenv, fetchurl, cmake }:
|
|
|
|
|
2018-03-21 08:03:25 +00:00
|
|
|
let version = "2.1.0.1"; in
|
2015-08-04 00:50:54 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "p8-platform";
|
|
|
|
inherit version;
|
2015-08-04 00:50:54 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-10-18 23:08:27 +01:00
|
|
|
url = "https://github.com/Pulse-Eight/platform/archive/p8-platform-${version}.tar.gz";
|
2018-03-21 08:03:25 +00:00
|
|
|
sha256 = "18381y54f7d18ckpzf9cfxbz1ws6imprbbm9pvhcg5c86ln8skq6";
|
2015-08-04 00:50:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Platform library for libcec and Kodi addons";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Pulse-Eight/platform";
|
2016-10-18 23:08:27 +01:00
|
|
|
repositories.git = "https://github.com/Pulse-Eight/platform.git";
|
2015-08-04 00:50:54 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.titanous ];
|
|
|
|
};
|
|
|
|
}
|