forked from mirrors/nixpkgs
kdeApplications.kolourpaint: init at 16.12.3
This commit is contained in:
parent
1173fe0b49
commit
dd662792b1
|
@ -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 {};
|
||||
|
|
28
pkgs/applications/kde/kolourpaint.nix
Normal file
28
pkgs/applications/kde/kolourpaint.nix
Normal file
|
@ -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"];
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue