Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / kquickimageedit / default.nix
blob7b81d8ca7c63a5a9f319adbbe86d6ac6decf6f59
1 { lib
2 , mkDerivation
3 , fetchFromGitLab
4 , extra-cmake-modules
5 }:
7 mkDerivation rec {
8   pname = "kquickimageeditor";
9   version = "0.3.0";
11   src = fetchFromGitLab {
12     domain = "invent.kde.org";
13     owner = "libraries";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "sha256-+BByt07HMb4u6j9bVZqkUPvyRaElKvJ2MjKlPakL87E=";
17   };
19   nativeBuildInputs = [ extra-cmake-modules ];
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   };