mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 15:04:44 +00:00
15 lines
226 B
Nix
15 lines
226 B
Nix
{ qtModule
|
|
, stdenv
|
|
, lib
|
|
, qtbase
|
|
, udev
|
|
, pkg-config
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtserialport";
|
|
qtInputs = [ qtbase ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
propagatedBuildInputs = lib.optionals stdenv.isLinux [ udev ];
|
|
}
|