007f80c1d0
Should eval cleanly, as far as -A tarball tells me. Relevant: issue #2999, issue #739
29 lines
827 B
Nix
29 lines
827 B
Nix
{ 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 ];
|
|
|
|
# Fix dlopen path
|
|
patchPhase = ''
|
|
substituteInPlace include/cecloader.h --replace "libcec.so" "$out/lib/libcec.so"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "USB CEC adapter communication library";
|
|
homepage = "http://libcec.pulse-eight.com";
|
|
repositories.git = "https://github.com/Pulse-Eight/libcec.git";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.titanous ];
|
|
};
|
|
}
|