mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
kdav: init at 17.04.0
This commit is contained in:
parent
6caaa1fc48
commit
463569f763
|
@ -72,6 +72,7 @@ let
|
|||
kcalutils = callPackage ./kcalutils.nix {};
|
||||
kcolorchooser = callPackage ./kcolorchooser.nix {};
|
||||
kcontacts = callPackage ./kcontacts.nix {};
|
||||
kdav = callPackage ./kdav.nix {};
|
||||
kdegraphics-mobipocket = callPackage ./kdegraphics-mobipocket.nix {};
|
||||
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};
|
||||
kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {};
|
||||
|
|
16
pkgs/applications/kde/kdav.nix
Normal file
16
pkgs/applications/kde/kdav.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
mkDerivation, lib, kdepimTeam,
|
||||
extra-cmake-modules, kdoctools,
|
||||
kcoreaddons, kio, qtxmlpatterns,
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "kdav";
|
||||
meta = {
|
||||
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
||||
maintainers = kdepimTeam;
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||
buildInputs = [ kcoreaddons kio qtxmlpatterns ];
|
||||
outputs = [ "out" "dev" ];
|
||||
}
|
Loading…
Reference in a new issue