2017-05-17 12:26:11 -07:00
|
|
|
{ stdenv, qtSubmodule, copyPathsToStore, qtbase }:
|
2017-03-25 16:16:51 -07:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2017-02-28 07:37:57 -08:00
|
|
|
|
|
|
|
qtSubmodule {
|
|
|
|
name = "qttools";
|
|
|
|
qtInputs = [ qtbase ];
|
2017-03-25 16:16:51 -07:00
|
|
|
|
|
|
|
patches = copyPathsToStore (readPathsFromFile ./. ./series);
|
2017-02-28 07:37:57 -08:00
|
|
|
postFixup = ''
|
|
|
|
moveToOutput "bin/qdbus" "$out"
|
|
|
|
moveToOutput "bin/qtpaths" "$out"
|
|
|
|
'';
|
|
|
|
}
|