Skip to content

Commit

Permalink
kipi-plugins: move to kde_applications
Browse files Browse the repository at this point in the history
  • Loading branch information
nyanloutre committed Aug 16, 2019
1 parent fc7f5e7 commit 6d5a90a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 32 deletions.
30 changes: 0 additions & 30 deletions pkgs/applications/graphics/kipi-plugins/default.nix

This file was deleted.

1 change: 1 addition & 0 deletions pkgs/applications/kde/default.nix
Expand Up @@ -116,6 +116,7 @@ let
kidentitymanagement = callPackage ./kidentitymanagement.nix {};
kig = callPackage ./kig.nix {};
kimap = callPackage ./kimap.nix {};
kipi-plugins = callPackage ./kipi-plugins.nix {};
kitinerary = callPackage ./kitinerary.nix {};
kio-extras = callPackage ./kio-extras.nix {};
kldap = callPackage ./kldap.nix {};
Expand Down
23 changes: 23 additions & 0 deletions pkgs/applications/kde/kipi-plugins.nix
@@ -0,0 +1,23 @@
{
mkDerivation, lib,
extra-cmake-modules,
karchive, kconfig, ki18n, kiconthemes, kio, kservice, kwindowsystem, kxmlgui,
libkipi, qtbase, qtsvg, qtxmlpatterns
}:

mkDerivation {
name = "kipi-plugins";

nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
karchive kconfig ki18n kiconthemes kio kservice kwindowsystem kxmlgui libkipi
qtbase qtsvg qtxmlpatterns
];

meta = {
description = "Plugins for KDE-based image applications";
license = lib.licenses.gpl2;
homepage = https://cgit.kde.org/kipi-plugins.git;
maintainers = with lib.maintainers; [ ttuegel ];
};
}
2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -19031,8 +19031,6 @@ in
ffmpeg = ffmpeg_2;
};

kipi-plugins = libsForQt5.callPackage ../applications/graphics/kipi-plugins { };

kitty = callPackage ../applications/misc/kitty {
harfbuzz = harfbuzz.override { withCoreText = stdenv.isDarwin; };
inherit (darwin.apple_sdk.frameworks) Cocoa CoreGraphics Foundation IOKit Kernel OpenGL;
Expand Down

0 comments on commit 6d5a90a

Please sign in to comment.