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

qtSubmodule {
  name = "qtserialport";
  qtInputs = [ qtbase ];
  patches = [
    (substituteAll {
      src = ./0001-dlopen-serialport-udev.patch;
      libudev = systemd.lib;
    })
  ];
}