Skip to content

Commit

Permalink
kdeApplications.kolourpaint: init at 16.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Apr 18, 2017
1 parent 1173fe0 commit dd66279
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
1 change: 1 addition & 0 deletions pkgs/applications/kde/default.nix
Expand Up @@ -75,6 +75,7 @@ let
kio-extras = callPackage ./kio-extras.nix {};
kmime = callPackage ./kmime.nix {};
kmix = callPackage ./kmix.nix {};
kolourpaint = callPackage ./kolourpaint.nix {};
kompare = callPackage ./kompare.nix {};
konsole = callPackage ./konsole.nix {};
krfb = callPackage ./krfb.nix {};
Expand Down
28 changes: 28 additions & 0 deletions pkgs/applications/kde/kolourpaint.nix
@@ -0,0 +1,28 @@
{ lib
, kdeApp
, kdeWrapper
, extra-cmake-modules
, kdoctools
, kdelibs4support
, libkexiv2
}:

let
unwrapped =
kdeApp {
name = "kolourpaint";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [
kdelibs4support
libkexiv2
];

meta = {
maintainers = [ lib.maintainers.fridh ];
license = with lib.licenses; [ gpl2 ];
};
};
in kdeWrapper {
inherit unwrapped;
targets = ["bin/kolourpaint"];
}
3 changes: 2 additions & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -14341,7 +14341,8 @@ with pkgs;

inherit (kdeApplications)
akonadi ark dolphin ffmpegthumbs filelight gwenview kate
kdenlive kcalc kcolorchooser kcontacts kgpg khelpcenter kig konsole krfb marble
kdenlive kcalc kcolorchooser kcontacts kgpg khelpcenter kig
kolourpaint konsole krfb marble
okteta okular spectacle;

kdeconnect = libsForQt5.callPackage ../applications/misc/kdeconnect { };
Expand Down

0 comments on commit dd66279

Please sign in to comment.