forked from mirrors/nixpkgs
13 lines
241 B
Nix
13 lines
241 B
Nix
|
{ qtSubmodule, qtbase, substituteAll, systemd }:
|
||
|
|
||
|
qtSubmodule {
|
||
|
name = "qtserialport";
|
||
|
qtInputs = [ qtbase ];
|
||
|
patches = [
|
||
|
(substituteAll {
|
||
|
src = ./0001-dlopen-serialport-udev.patch;
|
||
|
libudev = systemd.lib;
|
||
|
})
|
||
|
];
|
||
|
}
|