mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 03:48:57 +00:00
13 lines
241 B
Nix
13 lines
241 B
Nix
{ qtSubmodule, qtbase, substituteAll, libudev }:
|
|
|
|
qtSubmodule {
|
|
name = "qtserialport";
|
|
qtInputs = [ qtbase ];
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./0001-dlopen-serialport-udev.patch;
|
|
libudev = libudev.out;
|
|
})
|
|
];
|
|
}
|