mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
8 lines
225 B
Nix
8 lines
225 B
Nix
{ qtModule, stdenv, lib, qtbase, systemd }:
|
|
|
|
qtModule {
|
|
pname = "qtserialport";
|
|
qtInputs = [ qtbase ];
|
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isLinux "-DNIXPKGS_LIBUDEV=\"${lib.getLib systemd}/lib/libudev\"";
|
|
}
|