about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix
blob: 2c9575f122e78e601ab2dd60116d2556841d49ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ qtSubmodule, qtbase, substituteAll, libudev }:

qtSubmodule {
  name = "qtserialport";
  qtInputs = [ qtbase ];

  patches = [
    (substituteAll {
      src = ./0001-dlopen-serialport-udev.patch;
      libudev = libudev.out;
    })
  ];
  postFixup = ''
    fixQtModuleCMakeConfig "SerialPort"
  '';
}