15 lines
237 B
Nix
15 lines
237 B
Nix
|
{ qtModule
|
||
|
, qtbase
|
||
|
, qtdeclarative
|
||
|
, qtserialport
|
||
|
, pkg-config
|
||
|
, openssl
|
||
|
}:
|
||
|
|
||
|
qtModule {
|
||
|
pname = "qtpositioning";
|
||
|
qtInputs = [ qtbase qtdeclarative qtserialport ];
|
||
|
nativeBuildInputs = [ pkg-config ];
|
||
|
buildInputs = [ openssl ];
|
||
|
}
|