forked from mirrors/nixpkgs
1f005ac7f0
* libsForQt5.kquickimageedit: 0.1.3 -> 0.2.0 (#150016) * libsForQt5.kquickimageedit: add meta attributes Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
29 lines
675 B
Nix
29 lines
675 B
Nix
{ lib
|
|
, mkDerivation
|
|
, fetchFromGitLab
|
|
, extra-cmake-modules
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "kquickimageeditor";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "invent.kde.org";
|
|
owner = "libraries";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-g7+BAWjpQBJPbrwnIwSudjBFtwaj4JKemV+BLfPzl4I=";
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
|
|
meta = with lib; {
|
|
description = "Set of QtQuick components providing basic image editing capabilities";
|
|
homepage = "https://invent.kde.org/libraries/kquickimageeditor";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.unix;
|
|
badPlatforms = platforms.darwin;
|
|
};
|
|
}
|