2017-12-07 18:18:22 +00:00
|
|
|
{ stdenv, fetchurl, alsaLib, bash, help2man, pkgconfig, xlibsWrapper, python3
|
|
|
|
, libxslt, systemd, libusb, libftdi1 }:
|
2012-01-09 10:25:49 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-01-29 20:15:34 +00:00
|
|
|
name = "lirc-0.10.1";
|
2012-01-09 10:25:49 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/lirc/${name}.tar.bz2";
|
2018-01-29 20:15:34 +00:00
|
|
|
sha256 = "1whlyifvvc7w04ahq07nnk1h18wc8j7c6wnvlb6mszravxh3qxcb";
|
2012-01-09 10:25:49 +00:00
|
|
|
};
|
|
|
|
|
2017-11-25 21:23:57 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
|
|
|
|
# fix overriding PYTHONPATH
|
2017-12-09 22:35:13 +00:00
|
|
|
sed -i 's,^PYTHONPATH *= *,PYTHONPATH := $(PYTHONPATH):,' \
|
|
|
|
Makefile.in
|
2017-11-25 21:23:57 +00:00
|
|
|
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
|
|
|
|
'';
|
2014-08-30 22:32:37 +00:00
|
|
|
|
2017-01-09 20:28:32 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig help2man ];
|
|
|
|
|
2017-11-25 21:23:57 +00:00
|
|
|
buildInputs = [ alsaLib xlibsWrapper libxslt systemd libusb libftdi1 ]
|
2017-12-09 22:35:13 +00:00
|
|
|
++ (with python3.pkgs; [ python pyyaml setuptools ]);
|
2012-01-09 10:25:49 +00:00
|
|
|
|
2013-01-21 18:06:22 +00:00
|
|
|
configureFlags = [
|
2015-04-25 22:07:34 +00:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2017-11-25 21:23:57 +00:00
|
|
|
"--with-systemdsystemunitdir=$(out)/lib/systemd/system"
|
2017-12-09 22:35:13 +00:00
|
|
|
"--enable-uinput" # explicite activation because build env has no uinput
|
|
|
|
"--enable-devinput" # explicite activation because build env has not /dev/input
|
2013-01-21 18:06:22 +00:00
|
|
|
];
|
2014-08-30 22:32:37 +00:00
|
|
|
|
2015-04-26 03:20:59 +00:00
|
|
|
installFlags = [
|
2017-11-25 21:23:57 +00:00
|
|
|
"sysconfdir=$out/etc"
|
|
|
|
"localstatedir=$TMPDIR"
|
2015-04-26 03:20:59 +00:00
|
|
|
];
|
2015-04-25 22:07:34 +00:00
|
|
|
|
2014-08-30 22:32:37 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Allows to receive and send infrared signals";
|
|
|
|
homepage = http://www.lirc.org/;
|
|
|
|
license = licenses.gpl2;
|
2014-08-31 00:17:19 +00:00
|
|
|
platforms = platforms.linux;
|
2014-08-30 22:32:37 +00:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
};
|
2012-01-09 10:25:49 +00:00
|
|
|
}
|