tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
kpimtextedit: init at 17.04.0
Thomas Tuegel
8 years ago
a40f04d8
4caf7145
+22
2 changed files
expand all
collapse all
unified
split
pkgs
applications
kde
default.nix
kpimtextedit.nix
+1
pkgs/applications/kde/default.nix
···
84
84
kolourpaint = callPackage ./kolourpaint.nix {};
85
85
kompare = callPackage ./kompare.nix {};
86
86
konsole = callPackage ./konsole.nix {};
87
87
+
kpimtextedit = callPackage ./kpimtextedit.nix {};
87
88
krfb = callPackage ./krfb.nix {};
88
89
kwalletmanager = callPackage ./kwalletmanager.nix {};
89
90
libkcddb = callPackage ./libkcddb.nix {};
+21
pkgs/applications/kde/kpimtextedit.nix
···
1
1
+
{
2
2
+
mkDerivation, lib, kdepimTeam,
3
3
+
extra-cmake-modules, kdoctools,
4
4
+
grantlee5, kcodecs, kconfigwidgets, kemoticons, ki18n, kiconthemes, kio,
5
5
+
kdesignerplugin, ktextwidgets, sonnet, syntax-highlighting, qttools,
6
6
+
}:
7
7
+
8
8
+
mkDerivation {
9
9
+
name = "kpimtextedit";
10
10
+
meta = {
11
11
+
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
12
12
+
maintainers = kdepimTeam;
13
13
+
};
14
14
+
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
15
15
+
buildInputs = [
16
16
+
grantlee5 kcodecs kconfigwidgets kemoticons ki18n kiconthemes kio kdesignerplugin
17
17
+
sonnet syntax-highlighting qttools
18
18
+
];
19
19
+
propagatedBuildInputs = [ ktextwidgets ];
20
20
+
outputs = [ "out" "dev" ];
21
21
+
}