mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
8be4bd7416
- There is no such thing as KDE 5
27 lines
550 B
Nix
27 lines
550 B
Nix
{
|
|
kdeApp, lib, kdeWrapper,
|
|
ecm, kdoctools,
|
|
kconfig, kinit,
|
|
kcmutils, kconfigwidgets, knewstuff, kparts, qca-qt5
|
|
}:
|
|
|
|
let
|
|
unwrapped =
|
|
kdeApp {
|
|
name = "okteta";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 ];
|
|
maintainers = with lib.maintainers; [ peterhoeg ];
|
|
};
|
|
nativeBuildInputs = [ ecm kdoctools ];
|
|
propagatedBuildInputs = [
|
|
kconfig kinit
|
|
kcmutils kconfigwidgets knewstuff kparts qca-qt5
|
|
];
|
|
};
|
|
|
|
in kdeWrapper {
|
|
inherit unwrapped;
|
|
targets = [ "bin/okteta" ];
|
|
}
|