File tree 3 files changed +20
-1
lines changed
3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 100
100
kdepim-runtime = callPackage ./kdepim-runtime.nix { } ;
101
101
kdepim-apps-libs = callPackage ./kdepim-apps-libs { } ;
102
102
kdf = callPackage ./kdf.nix { } ;
103
+ kdialog = callPackage ./kdialog.nix { } ;
103
104
keditbookmarks = callPackage ./keditbookmarks.nix { } ;
104
105
kget = callPackage ./kget.nix { } ;
105
106
kgpg = callPackage ./kgpg.nix { } ;
Original file line number Diff line number Diff line change
1
+ {
2
+ mkDerivation , lib ,
3
+ extra-cmake-modules , kdoctools ,
4
+ kinit , kguiaddons , kwindowsystem
5
+ } :
6
+
7
+ mkDerivation {
8
+ name = "kdialog" ;
9
+
10
+ meta = {
11
+ license = with lib . licenses ; [ gpl2 fdl12 ] ;
12
+ maintainers = with lib . maintainers ; [ peterhoeg ] ;
13
+ } ;
14
+
15
+ nativeBuildInputs = [ extra-cmake-modules kdoctools ] ;
16
+
17
+ propagatedBuildInputs = [ kinit kguiaddons kwindowsystem ] ;
18
+ }
Original file line number Diff line number Diff line change @@ -15755,7 +15755,7 @@ with pkgs;
15755
15755
15756
15756
inherit (kdeApplications)
15757
15757
akonadi akregator ark dolphin ffmpegthumbs filelight gwenview k3b
15758
- kaddressbook kate kcachegrind kcalc kcolorchooser kcontacts kdenlive kdf keditbookmarks
15758
+ kaddressbook kate kcachegrind kcalc kcolorchooser kcontacts kdenlive kdf kdialog keditbookmarks
15759
15759
kget kgpg khelpcenter kig kleopatra kmail kmix kolourpaint kompare konsole
15760
15760
kontact korganizer krdc krfb kwalletmanager marble minuet okteta okular spectacle;
15761
15761
You can’t perform that action at this time.
0 commit comments