mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
37 lines
559 B
Nix
37 lines
559 B
Nix
{ 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 ];
|
|
};
|
|
}
|