mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
eventviews: init at 17.04.0
This commit is contained in:
parent
3ca93ebb4b
commit
95eee6b49b
@ -64,6 +64,7 @@ let
|
||||
calendarsupport = callPackage ./calendarsupport.nix {};
|
||||
dolphin = callPackage ./dolphin.nix {};
|
||||
dolphin-plugins = callPackage ./dolphin-plugins.nix {};
|
||||
eventviews = callPackage ./eventviews.nix {};
|
||||
ffmpegthumbs = callPackage ./ffmpegthumbs.nix { };
|
||||
filelight = callPackage ./filelight.nix {};
|
||||
grantleetheme = callPackage ./grantleetheme {};
|
||||
|
18
pkgs/applications/kde/eventviews.nix
Normal file
18
pkgs/applications/kde/eventviews.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
mkDerivation, lib, kdepimTeam,
|
||||
extra-cmake-modules, kdoctools,
|
||||
akonadi, calendarsupport, kcalutils, kdiagram, libkdepim, qtbase, qttools,
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "eventviews";
|
||||
meta = {
|
||||
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
||||
maintainers = kdepimTeam;
|
||||
};
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||
buildInputs = [
|
||||
akonadi calendarsupport kcalutils kdiagram libkdepim qtbase qttools
|
||||
];
|
||||
outputs = [ "out" "dev" ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user