12 lines
274 B
Nix
Raw Normal View History

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