about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-5/modules/qtserialport.nix
blob: 93f3e130ee74ba5e73d8106c728493ba1af4e2d3 (plain) (blame)
1
2
3
4
5
6
7
{ qtModule, stdenv, lib, qtbase, systemd }:

qtModule {
  pname = "qtserialport";
  qtInputs = [ qtbase ];
  env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isLinux "-DNIXPKGS_LIBUDEV=\"${lib.getLib systemd}/lib/libudev\"";
}