Skip to content

Commit 29deef0

Browse files
committedJan 21, 2018
kdialog: init at 17.12.1
1 parent 5402412 commit 29deef0

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed
 

‎pkgs/applications/kde/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ let
100100
kdepim-runtime = callPackage ./kdepim-runtime.nix {};
101101
kdepim-apps-libs = callPackage ./kdepim-apps-libs {};
102102
kdf = callPackage ./kdf.nix {};
103+
kdialog = callPackage ./kdialog.nix {};
103104
keditbookmarks = callPackage ./keditbookmarks.nix {};
104105
kget = callPackage ./kget.nix {};
105106
kgpg = callPackage ./kgpg.nix {};

‎pkgs/applications/kde/kdialog.nix

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
}

‎pkgs/top-level/all-packages.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -15755,7 +15755,7 @@ with pkgs;
1575515755

1575615756
inherit (kdeApplications)
1575715757
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
1575915759
kget kgpg khelpcenter kig kleopatra kmail kmix kolourpaint kompare konsole
1576015760
kontact korganizer krdc krfb kwalletmanager marble minuet okteta okular spectacle;
1576115761

0 commit comments

Comments
 (0)
Please sign in to comment.