2016-08-08 06:29:20 -07:00
|
|
|
{ qtSubmodule, lib, copyPathsToStore, qtbase }:
|
2015-09-27 07:46:48 -07:00
|
|
|
|
|
|
|
qtSubmodule {
|
|
|
|
name = "qttools";
|
|
|
|
qtInputs = [ qtbase ];
|
2016-08-08 06:29:20 -07:00
|
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
2016-01-24 16:27:08 -08:00
|
|
|
postFixup = ''
|
2016-01-31 07:52:07 -08:00
|
|
|
moveToOutput "bin/qdbus" "$out"
|
|
|
|
moveToOutput "bin/qtpaths" "$out"
|
2016-01-24 16:27:08 -08:00
|
|
|
'';
|
2015-09-27 07:46:48 -07:00
|
|
|
}
|