f9f6f41bff
TODO: there was more significant refactoring of qtbase and plasma 5.5 on master, and I'm deferring pointing to correct outputs to later.
13 lines
242 B
Nix
13 lines
242 B
Nix
{ qtSubmodule, qtbase, substituteAll, libudev }:
|
|
|
|
qtSubmodule {
|
|
name = "qtserialport";
|
|
qtInputs = [ qtbase ];
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./0001-dlopen-serialport-udev.patch;
|
|
libudev = libudev.out;
|
|
})
|
|
];
|
|
}
|