mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
cd7d8a60b4
Qt 5.8 is now the default version.
12 lines
274 B
Nix
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"
|
|
'';
|
|
}
|