mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 20:17:52 +00:00
Merge pull request #201239 from trofi/lirc-without-xlibsWrapper
lirc: use xorg.* packages directly instead of xlibsWrapper indirection
This commit is contained in:
commit
a5342f3e84
@ -1,5 +1,21 @@
|
||||
{ lib, stdenv, fetchurl, fetchpatch, autoreconfHook, pkg-config, help2man, python3,
|
||||
alsa-lib, xlibsWrapper, libxslt, systemd, libusb-compat-0_1, libftdi1 }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, fetchpatch
|
||||
, autoreconfHook
|
||||
, pkg-config
|
||||
, help2man
|
||||
, python3
|
||||
|
||||
, alsa-lib
|
||||
, libxslt
|
||||
, systemd
|
||||
, libusb-compat-0_1
|
||||
, libftdi1
|
||||
, libICE
|
||||
, libSM
|
||||
, libX11
|
||||
}:
|
||||
|
||||
let
|
||||
pythonEnv = python3.pythonForBuild.withPackages (p: with p; [ pyyaml setuptools ]);
|
||||
@ -54,7 +70,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
depsBuildBuild = [ pkg-config ];
|
||||
|
||||
buildInputs = [ alsa-lib xlibsWrapper systemd libusb-compat-0_1 libftdi1 ];
|
||||
buildInputs = [ alsa-lib systemd libusb-compat-0_1 libftdi1 libICE libSM libX11 ];
|
||||
|
||||
DEVINPUT_HEADER = "include/linux/input-event-codes.h";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user