15 lines
178 B
Nix
15 lines
178 B
Nix
|
|
{
|
||
|
|
qtModule,
|
||
|
|
qtbase,
|
||
|
|
qtserialport,
|
||
|
|
}:
|
||
|
|
|
||
|
|
qtModule {
|
||
|
|
pname = "qtserialbus";
|
||
|
|
propagatedBuildInputs = [
|
||
|
|
qtbase
|
||
|
|
qtserialport
|
||
|
|
];
|
||
|
|
meta.mainProgram = "canbusutil";
|
||
|
|
}
|