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>

authored by R. RyanTM Renaud and committed by GitHub 1f005ac7 65ecaa99

+12 -3
+12 -3
pkgs/development/libraries/kquickimageedit/default.nix
··· 1 - { mkDerivation 2 , fetchFromGitLab 3 , extra-cmake-modules 4 }: 5 6 mkDerivation rec { 7 pname = "kquickimageeditor"; 8 - version = "0.1.3"; 9 10 src = fetchFromGitLab { 11 domain = "invent.kde.org"; 12 owner = "libraries"; 13 repo = pname; 14 rev = "v${version}"; 15 - sha256 = "sha256-p2uOssS5MQSkmppNKOjTxp866Qx1rIB6ZPhcmVvfBxs="; 16 }; 17 18 nativeBuildInputs = [ extra-cmake-modules ]; 19 }
··· 1 + { lib 2 + , mkDerivation 3 , fetchFromGitLab 4 , extra-cmake-modules 5 }: 6 7 mkDerivation rec { 8 pname = "kquickimageeditor"; 9 + version = "0.2.0"; 10 11 src = fetchFromGitLab { 12 domain = "invent.kde.org"; 13 owner = "libraries"; 14 repo = pname; 15 rev = "v${version}"; 16 + sha256 = "sha256-g7+BAWjpQBJPbrwnIwSudjBFtwaj4JKemV+BLfPzl4I="; 17 }; 18 19 nativeBuildInputs = [ extra-cmake-modules ]; 20 + 21 + meta = with lib; { 22 + description = "Set of QtQuick components providing basic image editing capabilities"; 23 + homepage = "https://invent.kde.org/libraries/kquickimageeditor"; 24 + license = licenses.lgpl21Plus; 25 + platforms = platforms.unix; 26 + badPlatforms = platforms.darwin; 27 + }; 28 }