lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 15.09-beta 23 lines 665 B view raw
1{ stdenv, fetchurl, cmake }: 2 3let version = "1.0.10"; in 4 5stdenv.mkDerivation { 6 name = "libcec-${version}"; 7 8 src = fetchurl { 9 url = "https://github.com/Pulse-Eight/platform/archive/${version}.tar.gz"; 10 sha256 = "1kdmi9b62nky4jrb5519ddnw5n7s7m6qyj7rzhg399f0n6f278vb"; 11 }; 12 13 nativeBuildInputs = [ cmake ]; 14 15 meta = with stdenv.lib; { 16 description = "Platform library for libcec and Kodi addons"; 17 homepage = "https://github.com/Pulse-Eight/platform"; 18 repositories.git = "https://github.com/Pulse-Eight/libcec.git"; 19 license = stdenv.lib.licenses.gpl2Plus; 20 platforms = platforms.linux; 21 maintainers = [ maintainers.titanous ]; 22 }; 23}