mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
8e9fca18e3
Provides a globally unique name (plasmaPackage) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
29 lines
378 B
Nix
29 lines
378 B
Nix
{ plasmaPackage
|
|
, extra-cmake-modules
|
|
, qtscript
|
|
, qtdeclarative
|
|
, kcoreaddons
|
|
, ki18n
|
|
, kdeclarative
|
|
, kservice
|
|
, plasma-framework
|
|
, krunner
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "milou";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
qtscript
|
|
qtdeclarative
|
|
kcoreaddons
|
|
ki18n
|
|
kdeclarative
|
|
kservice
|
|
plasma-framework
|
|
krunner
|
|
];
|
|
}
|