ktnef: init at 17.04.0

This commit is contained in:
Thomas Tuegel 2017-05-09 18:36:20 -05:00
parent 4e88274bf3
commit 551604e045
No known key found for this signature in database
GPG key ID: 22CBF5249D4B4D59
2 changed files with 19 additions and 0 deletions

View file

@ -91,6 +91,7 @@ let
kontactinterface = callPackage ./kontactinterface.nix {};
kpimtextedit = callPackage ./kpimtextedit.nix {};
krfb = callPackage ./krfb.nix {};
ktnef = callPackage ./ktnef.nix {};
kwalletmanager = callPackage ./kwalletmanager.nix {};
libgravatar = callPackage ./libgravatar.nix {};
libkcddb = callPackage ./libkcddb.nix {};

View file

@ -0,0 +1,18 @@
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
kcalcore, kcalutils, kcontacts, kdelibs4support
}:
mkDerivation {
name = "ktnef";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [
kcalcore kcalutils kcontacts kdelibs4support
];
outputs = [ "out" "dev" ];
}