mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
libsForQt5.mauiPackages.mauikit-imagetools: init at 2.1.2
This commit is contained in:
parent
d5a2974e52
commit
3bf346ea40
@ -65,6 +65,7 @@ let
|
||||
mauikit = callPackage ./mauikit.nix { };
|
||||
mauikit-accounts = callPackage ./mauikit-accounts.nix { };
|
||||
mauikit-filebrowsing = callPackage ./mauikit-filebrowsing.nix { };
|
||||
mauikit-imagetools = callPackage ./mauikit-imagetools.nix { };
|
||||
mauikit-texteditor = callPackage ./mauikit-texteditor.nix { };
|
||||
|
||||
# applications
|
||||
|
36
pkgs/applications/maui/mauikit-imagetools.nix
Normal file
36
pkgs/applications/maui/mauikit-imagetools.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, mkDerivation
|
||||
, cmake
|
||||
, extra-cmake-modules
|
||||
, kconfig
|
||||
, kio
|
||||
, mauikit
|
||||
, qtlocation
|
||||
, exiv2
|
||||
, kquickimageedit
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
pname = "mauikit-imagetools";
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
extra-cmake-modules
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
kconfig
|
||||
kio
|
||||
mauikit
|
||||
qtlocation
|
||||
exiv2
|
||||
kquickimageedit
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://invent.kde.org/maui/mauikit-imagetools";
|
||||
description = "MauiKit Image Tools Components";
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ onny ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user