libcec: 3.1.0 -> 4.0.2

This commit is contained in:
Jonathan Rudenberg 2017-02-24 18:20:12 -05:00 committed by Franz Pletz
parent 3a4dd97c55
commit a6dffeecfa

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl, cmake, pkgconfig, udev, libcec_platform }:
let version = "3.1.0"; in
let version = "4.0.2"; in
stdenv.mkDerivation {
name = "libcec-${version}";
src = fetchurl {
url = "https://github.com/Pulse-Eight/libcec/archive/libcec-${version}.tar.gz";
sha256 = "08gr4rhx7qh8ajkry9j0sqw11i74y802dla1wg4l4gxhl4hrs409";
sha256 = "09xsw9hfymzl9fi9r2r8n5cxk80fc00x9drsy1r59pgbycqxvf5q";
};
buildInputs = [ cmake pkgconfig udev libcec_platform ];