Skip to content

Commit

Permalink
kdialog: init at 17.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg committed Jan 21, 2018
1 parent 5402412 commit 29deef0
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions pkgs/applications/kde/default.nix
Expand Up @@ -100,6 +100,7 @@ let
kdepim-runtime = callPackage ./kdepim-runtime.nix {};
kdepim-apps-libs = callPackage ./kdepim-apps-libs {};
kdf = callPackage ./kdf.nix {};
kdialog = callPackage ./kdialog.nix {};
keditbookmarks = callPackage ./keditbookmarks.nix {};
kget = callPackage ./kget.nix {};
kgpg = callPackage ./kgpg.nix {};
Expand Down
18 changes: 18 additions & 0 deletions pkgs/applications/kde/kdialog.nix
@@ -0,0 +1,18 @@
{
mkDerivation, lib,
extra-cmake-modules, kdoctools,
kinit, kguiaddons, kwindowsystem
}:

mkDerivation {
name = "kdialog";

meta = {
license = with lib.licenses; [ gpl2 fdl12 ];
maintainers = with lib.maintainers; [ peterhoeg ];
};

nativeBuildInputs = [ extra-cmake-modules kdoctools ];

propagatedBuildInputs = [ kinit kguiaddons kwindowsystem ];
}
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -15755,7 +15755,7 @@ with pkgs;

inherit (kdeApplications)
akonadi akregator ark dolphin ffmpegthumbs filelight gwenview k3b
kaddressbook kate kcachegrind kcalc kcolorchooser kcontacts kdenlive kdf keditbookmarks
kaddressbook kate kcachegrind kcalc kcolorchooser kcontacts kdenlive kdf kdialog keditbookmarks
kget kgpg khelpcenter kig kleopatra kmail kmix kolourpaint kompare konsole
kontact korganizer krdc krfb kwalletmanager marble minuet okteta okular spectacle;

Expand Down

0 comments on commit 29deef0

Please sign in to comment.