mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
ktnef: init at 17.04.0
This commit is contained in:
parent
4e88274bf3
commit
551604e045
|
@ -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 {};
|
||||
|
|
18
pkgs/applications/kde/ktnef.nix
Normal file
18
pkgs/applications/kde/ktnef.nix
Normal 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" ];
|
||||
}
|
Loading…
Reference in a new issue