Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, mkDerivation 3, fetchFromGitLab 4, extra-cmake-modules 5}: 6 7mkDerivation 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}