mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 16:34:27 +00:00
cd7d8a60b4
Qt 5.8 is now the default version.
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;
|
|
})
|
|
];
|
|
}
|