mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
kcalcore: init at 17.04.0
This commit is contained in:
parent
0d21d80618
commit
4caf71456c
@ -65,6 +65,7 @@ let
|
||||
kate = callPackage ./kate.nix {};
|
||||
kcachegrind = callPackage ./kcachegrind.nix {};
|
||||
kcalc = callPackage ./kcalc.nix {};
|
||||
kcalcore = callPackage ./kcalcore.nix {};
|
||||
kcolorchooser = callPackage ./kcolorchooser.nix {};
|
||||
kcontacts = callPackage ./kcontacts.nix {};
|
||||
kdegraphics-mobipocket = callPackage ./kdegraphics-mobipocket.nix {};
|
||||
|
16
pkgs/applications/kde/kcalcore.nix
Normal file
16
pkgs/applications/kde/kcalcore.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
mkDerivation, lib, kdepimTeam,
|
||||
extra-cmake-modules, kdoctools,
|
||||
kdelibs4support, libical
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "kcalcore";
|
||||
meta = {
|
||||
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
||||
maintainers = kdepimTeam;
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||
propagatedBuildInputs = [ kdelibs4support libical ];
|
||||
outputs = [ "out" "dev" ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user