mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
22 lines
294 B
Nix
22 lines
294 B
Nix
{
|
|
mkDerivation,
|
|
cmake,
|
|
extra-cmake-modules,
|
|
qtbase,
|
|
qttools,
|
|
shared-mime-info,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kcoreaddons";
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
qttools
|
|
shared-mime-info
|
|
];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|