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

49 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, alsaLib, bash, help2man, pkgconfig, xlibsWrapper
, python3Packages, libxslt, systemd, libusb, libftdi1 }:
stdenv.mkDerivation rec {
name = "lirc-0.9.4d";
src = fetchurl {
url = "mirror://sourceforge/lirc/${name}.tar.bz2";
sha256 = "1as19rnaz9vpp58kbk9q2lch51vf2fdi27bl19f8d6s8bg1ii3y6";
};
postPatch = ''
patchShebangs .
# fix overriding PYTHONPATH
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
'';
2017-01-09 20:28:32 +00:00
nativeBuildInputs = [ pkgconfig help2man ];
buildInputs = [ alsaLib xlibsWrapper libxslt systemd libusb libftdi1 ]
++ (with python3Packages; [ python pyyaml ]);
configureFlags = [
2015-04-25 23:07:34 +01:00
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-systemdsystemunitdir=$(out)/lib/systemd/system"
];
2015-04-26 04:20:59 +01:00
installFlags = [
"sysconfdir=$out/etc"
"localstatedir=$TMPDIR"
2015-04-26 04:20:59 +01:00
];
2015-04-25 23:07:34 +01:00
meta = with stdenv.lib; {
description = "Allows to receive and send infrared signals";
homepage = http://www.lirc.org/;
license = licenses.gpl2;
2014-08-31 01:17:19 +01:00
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}