tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
eventviews: init at 17.04.0
Thomas Tuegel
8 years ago
95eee6b4
3ca93ebb
+19
2 changed files
expand all
collapse all
unified
split
pkgs
applications
kde
default.nix
eventviews.nix
+1
pkgs/applications/kde/default.nix
···
64
64
calendarsupport = callPackage ./calendarsupport.nix {};
65
65
dolphin = callPackage ./dolphin.nix {};
66
66
dolphin-plugins = callPackage ./dolphin-plugins.nix {};
67
67
+
eventviews = callPackage ./eventviews.nix {};
67
68
ffmpegthumbs = callPackage ./ffmpegthumbs.nix { };
68
69
filelight = callPackage ./filelight.nix {};
69
70
grantleetheme = callPackage ./grantleetheme {};
+18
pkgs/applications/kde/eventviews.nix
···
1
1
+
{
2
2
+
mkDerivation, lib, kdepimTeam,
3
3
+
extra-cmake-modules, kdoctools,
4
4
+
akonadi, calendarsupport, kcalutils, kdiagram, libkdepim, qtbase, qttools,
5
5
+
}:
6
6
+
7
7
+
mkDerivation {
8
8
+
name = "eventviews";
9
9
+
meta = {
10
10
+
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
11
11
+
maintainers = kdepimTeam;
12
12
+
};
13
13
+
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
14
14
+
buildInputs = [
15
15
+
akonadi calendarsupport kcalutils kdiagram libkdepim qtbase qttools
16
16
+
];
17
17
+
outputs = [ "out" "dev" ];
18
18
+
}