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
kolourpaint = callPackage ./kolourpaint.nix {};
85
kompare = callPackage ./kompare.nix {};
86
konsole = callPackage ./konsole.nix {};
0
87
krfb = callPackage ./krfb.nix {};
88
kwalletmanager = callPackage ./kwalletmanager.nix {};
89
libkcddb = callPackage ./libkcddb.nix {};
···
84
kolourpaint = callPackage ./kolourpaint.nix {};
85
kompare = callPackage ./kompare.nix {};
86
konsole = callPackage ./konsole.nix {};
87
+
kpimtextedit = callPackage ./kpimtextedit.nix {};
88
krfb = callPackage ./krfb.nix {};
89
kwalletmanager = callPackage ./kwalletmanager.nix {};
90
libkcddb = callPackage ./libkcddb.nix {};
+21
pkgs/applications/kde/kpimtextedit.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{
2
+
mkDerivation, lib, kdepimTeam,
3
+
extra-cmake-modules, kdoctools,
4
+
grantlee5, kcodecs, kconfigwidgets, kemoticons, ki18n, kiconthemes, kio,
5
+
kdesignerplugin, ktextwidgets, sonnet, syntax-highlighting, qttools,
6
+
}:
7
+
8
+
mkDerivation {
9
+
name = "kpimtextedit";
10
+
meta = {
11
+
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
12
+
maintainers = kdepimTeam;
13
+
};
14
+
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
15
+
buildInputs = [
16
+
grantlee5 kcodecs kconfigwidgets kemoticons ki18n kiconthemes kio kdesignerplugin
17
+
sonnet syntax-highlighting qttools
18
+
];
19
+
propagatedBuildInputs = [ ktextwidgets ];
20
+
outputs = [ "out" "dev" ];
21
+
}