libcec: 2.2.0 -> 3.0.1

Also adds the libcec_platform library which is a new dependency.
This commit is contained in:
Jonathan Rudenberg
2015-08-03 19:51:59 -04:00
parent 5ef9a427cf
commit c94bf0e8b1
3 changed files with 31 additions and 5 deletions
@@ -0,0 +1,23 @@
{ stdenv, fetchurl, cmake }:
let version = "1.0.10"; in
stdenv.mkDerivation {
name = "libcec-${version}";
src = fetchurl {
url = "https://github.com/Pulse-Eight/platform/archive/${version}.tar.gz";
sha256 = "1kdmi9b62nky4jrb5519ddnw5n7s7m6qyj7rzhg399f0n6f278vb";
};
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "Platform library for libcec and Kodi addons";
homepage = "https://github.com/Pulse-Eight/platform";
repositories.git = "https://github.com/Pulse-Eight/libcec.git";
license = stdenv.lib.licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.titanous ];
};
}