cf5ed04f49
Provide a globally unique name (kdeApp) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
43 lines
562 B
Nix
43 lines
562 B
Nix
{ kdeApp
|
|
, lib
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, karchive
|
|
, kconfig
|
|
, kcrash
|
|
, kdbusaddons
|
|
, ki18n
|
|
, kiconthemes
|
|
, khtml
|
|
, kio
|
|
, kservice
|
|
, kpty
|
|
, kwidgetsaddons
|
|
, libarchive
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "ark";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
];
|
|
buildInputs = [
|
|
karchive
|
|
kconfig
|
|
kcrash
|
|
kdbusaddons
|
|
ki18n
|
|
kiconthemes
|
|
khtml
|
|
kio
|
|
kservice
|
|
kpty
|
|
kwidgetsaddons
|
|
libarchive
|
|
];
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl3 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|