mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
16 lines
384 B
Nix
16 lines
384 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
kcoreaddons, kdeclarative, ki18n, kitemmodels, krunner, kservice,
|
|
plasma-framework, qtbase, qtscript, qtdeclarative
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "milou";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kcoreaddons kdeclarative ki18n kitemmodels krunner kservice plasma-framework
|
|
qtdeclarative qtscript
|
|
];
|
|
}
|