aae53c8f97
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
13 lines
215 B
Nix
13 lines
215 B
Nix
{ qtModule
|
|
, stdenv
|
|
, lib
|
|
, qtbase
|
|
, udev
|
|
, pkg-config
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtserialport";
|
|
nativeBuildInputs = [ pkg-config ];
|
|
propagatedBuildInputs = [ qtbase ] ++ lib.optionals stdenv.isLinux [ udev ];
|
|
}
|