kmplot: init at 18.12.1
This commit is contained in:
parent
8ef1e4186f
commit
dd269b4628
|
@ -124,6 +124,7 @@ let
|
|||
kmbox = callPackage ./kmbox.nix {};
|
||||
kmime = callPackage ./kmime.nix {};
|
||||
kmix = callPackage ./kmix.nix {};
|
||||
kmplot = callPackage ./kmplot.nix {};
|
||||
kolourpaint = callPackage ./kolourpaint.nix {};
|
||||
kompare = callPackage ./kompare.nix {};
|
||||
konsole = callPackage ./konsole.nix {};
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
{ mkDerivation, lib, extra-cmake-modules, kdoctools
|
||||
, kcrash, kguiaddons, ki18n, kparts, kwidgetsaddons, kdbusaddons
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "kmplot";
|
||||
meta = {
|
||||
license = with lib.licenses; [ gpl2Plus fdl12 ];
|
||||
maintainers = [ lib.maintainers.orivej ];
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||
buildInputs = [
|
||||
kcrash kguiaddons ki18n kparts kwidgetsaddons kdbusaddons
|
||||
];
|
||||
}
|
|
@ -17853,7 +17853,7 @@ in
|
|||
inherit (kdeApplications)
|
||||
akonadi akregator ark dolphin dragon ffmpegthumbs filelight gwenview k3b
|
||||
kaddressbook kate kcachegrind kcalc kcharselect kcolorchooser kcontacts kdenlive kdf kdialog
|
||||
keditbookmarks kget kgpg khelpcenter kig kleopatra kmail kmix kolourpaint kompare konsole
|
||||
keditbookmarks kget kgpg khelpcenter kig kleopatra kmail kmix kmplot kolourpaint kompare konsole
|
||||
kpkpass kitinerary kontact korganizer krdc krfb ksystemlog ktouch kwalletmanager marble minuet okular spectacle;
|
||||
|
||||
okteta = libsForQt5.callPackage ../applications/editors/okteta { };
|
||||
|
|
Loading…
Reference in New Issue