bb584b27e9
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
12 lines
244 B
Nix
12 lines
244 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
qtbase, qttools, qtx11extras
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kdbusaddons";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qttools qtx11extras ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|