mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 04:24:28 +03:00
10 lines
153 B
Nix
10 lines
153 B
Nix
{ qtSubmodule, qtbase }:
|
|
|
|
qtSubmodule {
|
|
name = "qtx11extras";
|
|
qtInputs = [ qtbase ];
|
|
postFixup = ''
|
|
fixQtModuleCMakeConfig "X11Extras"
|
|
'';
|
|
}
|