2015-08-03 23:50:54 +00:00
|
|
|
{ stdenv, fetchurl, cmake }:
|
|
|
|
|
2016-10-18 22:08:27 +00:00
|
|
|
let version = "2.0.1"; in
|
2015-08-03 23:50:54 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2016-10-18 22:08:27 +00:00
|
|
|
name = "p8-platform-${version}";
|
2015-08-03 23:50:54 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-10-18 22:08:27 +00:00
|
|
|
url = "https://github.com/Pulse-Eight/platform/archive/p8-platform-${version}.tar.gz";
|
|
|
|
sha256 = "1kslq24p2zams92kc247qcczbxb2n89ykk9jfyiilmwh7qklazp9";
|
2015-08-03 23:50:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Platform library for libcec and Kodi addons";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = https://github.com/Pulse-Eight/platform;
|
2016-10-18 22:08:27 +00:00
|
|
|
repositories.git = "https://github.com/Pulse-Eight/platform.git";
|
2015-08-03 23:50:54 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.titanous ];
|
|
|
|
};
|
|
|
|
}
|