kpimtextedit: init at 17.04.0
This commit is contained in:
parent
4caf71456c
commit
a40f04d8dc
|
@ -84,6 +84,7 @@ let
|
||||||
kolourpaint = callPackage ./kolourpaint.nix {};
|
kolourpaint = callPackage ./kolourpaint.nix {};
|
||||||
kompare = callPackage ./kompare.nix {};
|
kompare = callPackage ./kompare.nix {};
|
||||||
konsole = callPackage ./konsole.nix {};
|
konsole = callPackage ./konsole.nix {};
|
||||||
|
kpimtextedit = callPackage ./kpimtextedit.nix {};
|
||||||
krfb = callPackage ./krfb.nix {};
|
krfb = callPackage ./krfb.nix {};
|
||||||
kwalletmanager = callPackage ./kwalletmanager.nix {};
|
kwalletmanager = callPackage ./kwalletmanager.nix {};
|
||||||
libkcddb = callPackage ./libkcddb.nix {};
|
libkcddb = callPackage ./libkcddb.nix {};
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
mkDerivation, lib, kdepimTeam,
|
||||||
|
extra-cmake-modules, kdoctools,
|
||||||
|
grantlee5, kcodecs, kconfigwidgets, kemoticons, ki18n, kiconthemes, kio,
|
||||||
|
kdesignerplugin, ktextwidgets, sonnet, syntax-highlighting, qttools,
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
name = "kpimtextedit";
|
||||||
|
meta = {
|
||||||
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
||||||
|
maintainers = kdepimTeam;
|
||||||
|
};
|
||||||
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||||
|
buildInputs = [
|
||||||
|
grantlee5 kcodecs kconfigwidgets kemoticons ki18n kiconthemes kio kdesignerplugin
|
||||||
|
sonnet syntax-highlighting qttools
|
||||||
|
];
|
||||||
|
propagatedBuildInputs = [ ktextwidgets ];
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
}
|
Loading…
Reference in New Issue