nixpkgs/pkgs/development/libraries/qt-5/5.6/qttools/default.nix
2016-08-08 08:52:45 -05:00

12 lines
274 B
Nix

{ qtSubmodule, lib, copyPathsToStore, qtbase }:
qtSubmodule {
name = "qttools";
qtInputs = [ qtbase ];
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
postFixup = ''
moveToOutput "bin/qdbus" "$out"
moveToOutput "bin/qtpaths" "$out"
'';
}