mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
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" ];
|
||
|
}
|