nixpkgs/pkgs/development/libraries/qt-5/modules/qtserialport.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
225 B
Nix
Raw Normal View History

{ qtModule, stdenv, lib, qtbase, systemd }:
2017-03-25 23:16:51 +00:00
qtModule {
2021-05-14 10:53:30 +00:00
pname = "qtserialport";
qtInputs = [ qtbase ];
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isLinux "-DNIXPKGS_LIBUDEV=\"${lib.getLib systemd}/lib/libudev\"";
}