mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
kde5.kipi-plugins: init at 5.2.0
This commit is contained in:
parent
bb6765b416
commit
e2204b72b8
2 changed files with 37 additions and 0 deletions
34
pkgs/applications/graphics/kipi-plugins/5.x.nix
Normal file
34
pkgs/applications/graphics/kipi-plugins/5.x.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
stdenv, fetchurl,
|
||||
ecm,
|
||||
karchive, kconfig, ki18n, kiconthemes, kio, kservice, kwindowsystem, kxmlgui,
|
||||
libkipi, qtbase, qtsvg, qtxmlpatterns
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "kipi-plugins-${version}";
|
||||
version = "5.2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.kde.org/stable/digikam/digikam-${version}.tar.xz";
|
||||
sha256 = "0q4j7iv20cxgfsr14qwzx05wbp2zkgc7cg2pi7ibcnwba70ky96g";
|
||||
};
|
||||
|
||||
prePatch = ''
|
||||
cd extra/kipi-plugins
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ ecm ];
|
||||
buildInputs = [
|
||||
karchive kconfig ki18n kiconthemes kio kservice kwindowsystem kxmlgui libkipi
|
||||
qtbase qtsvg qtxmlpatterns
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Plugins for KDE-based image applications";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
homepage = http://www.digikam.org;
|
||||
maintainers = with stdenv.lib.maintainers; [ ttuegel ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -64,6 +64,9 @@ let
|
|||
spectacle = callPackage ./spectacle.nix {};
|
||||
|
||||
l10n = pkgs.recurseIntoAttrs (import ./l10n.nix { inherit callPackage lib pkgs; });
|
||||
|
||||
# External packages
|
||||
kipi-plugins = callPackage ../../../applications/graphics/kipi-plugins/5.x.nix {};
|
||||
};
|
||||
|
||||
in packages
|
||||
|
|
Loading…
Reference in a new issue