libsForQt5.kquickimageedit: 0.1.3 -> 0.2.0
* libsForQt5.kquickimageedit: 0.1.3 -> 0.2.0 (#150016) * libsForQt5.kquickimageedit: add meta attributes Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
This commit is contained in:
parent
65ecaa9903
commit
1f005ac7f0
1 changed files with 12 additions and 3 deletions
|
@ -1,19 +1,28 @@
|
|||
{ mkDerivation
|
||||
{ lib
|
||||
, mkDerivation
|
||||
, fetchFromGitLab
|
||||
, extra-cmake-modules
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "kquickimageeditor";
|
||||
version = "0.1.3";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "invent.kde.org";
|
||||
owner = "libraries";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-p2uOssS5MQSkmppNKOjTxp866Qx1rIB6ZPhcmVvfBxs=";
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue