nixpkgs/pkgs/development/libraries/lirc/default.nix

59 lines
1.8 KiB
Nix
Raw Normal View History

2018-10-12 17:39:26 +00:00
{ stdenv, fetchurl, fetchpatch, autoreconfHook, pkgconfig, help2man, python3,
2020-04-28 03:29:39 +00:00
alsaLib, xlibsWrapper, libxslt, systemd, libusb-compat-0_1, libftdi1 }:
stdenv.mkDerivation rec {
2018-01-29 20:15:34 +00:00
name = "lirc-0.10.1";
src = fetchurl {
url = "mirror://sourceforge/lirc/${name}.tar.bz2";
2018-01-29 20:15:34 +00:00
sha256 = "1whlyifvvc7w04ahq07nnk1h18wc8j7c6wnvlb6mszravxh3qxcb";
};
2018-10-12 17:39:26 +00:00
# Fix installation of Python bindings
patches = [ (fetchpatch {
url = "https://sourceforge.net/p/lirc/tickets/339/attachment/0001-Fix-Python-bindings.patch";
sha256 = "088a39x8c1qd81qwvbiqd6crb2lk777wmrs8rdh1ga06lglyvbly";
}) ];
postPatch = ''
patchShebangs .
# fix overriding PYTHONPATH
2017-12-09 22:35:13 +00:00
sed -i 's,^PYTHONPATH *= *,PYTHONPATH := $(PYTHONPATH):,' \
Makefile.in
sed -i 's,PYTHONPATH=,PYTHONPATH=$(PYTHONPATH):,' \
doc/Makefile.in
'';
preConfigure = ''
# use empty inc file instead of a from linux kernel generated one
touch lib/lirc/input_map.inc
'';
2018-10-12 17:39:26 +00:00
nativeBuildInputs = [ autoreconfHook pkgconfig help2man
(python3.withPackages (p: with p; [ pyyaml setuptools ])) ];
2017-01-09 20:28:32 +00:00
2020-04-28 03:29:39 +00:00
buildInputs = [ alsaLib xlibsWrapper libxslt systemd libusb-compat-0_1 libftdi1 ];
configureFlags = [
2015-04-25 22:07:34 +00:00
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-systemdsystemunitdir=$(out)/lib/systemd/system"
2018-10-12 17:39:26 +00:00
"--enable-uinput" # explicit activation because build env has no uinput
"--enable-devinput" # explicit activation because build env has no /dev/input
];
2015-04-26 03:20:59 +00:00
installFlags = [
"sysconfdir=$out/etc"
"localstatedir=$TMPDIR"
2015-04-26 03:20:59 +00:00
];
2015-04-25 22:07:34 +00:00
meta = with stdenv.lib; {
description = "Allows to receive and send infrared signals";
homepage = "https://www.lirc.org/";
license = licenses.gpl2;
2014-08-31 00:17:19 +00:00
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}