Add libcec 2.1.4
This commit is contained in:
parent
7a4d26a785
commit
be5ec66d9e
22
pkgs/development/libraries/libcec/default.nix
Normal file
22
pkgs/development/libraries/libcec/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchurl, autoreconfHook, pkgconfig, udev }:
|
||||
|
||||
let version = "2.1.4"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libcec-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Pulse-Eight/libcec/archive/libcec-${version}.tar.gz";
|
||||
sha256 = "0iz11zclbs3gk4ddq0pm4vyq015qmvy4nb9sra3vk6jw58izbgkr";
|
||||
};
|
||||
|
||||
buildInputs = [ autoreconfHook pkgconfig udev ];
|
||||
|
||||
meta = {
|
||||
description = "USB CEC adapter communication library";
|
||||
homepage = "http://libcec.pulse-eight.com";
|
||||
repositories.git = "https://github.com/Pulse-Eight/libcec.git";
|
||||
license = "GPLv2+";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -5543,6 +5543,8 @@ let
|
||||
then libcanberra.override { gtk = null; }
|
||||
else libcanberra;
|
||||
|
||||
libcec = callPackage ../development/libraries/libcec { };
|
||||
|
||||
libcello = callPackage ../development/libraries/libcello {};
|
||||
|
||||
libcdaudio = callPackage ../development/libraries/libcdaudio { };
|
||||
|
Loading…
Reference in New Issue
Block a user