Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 stdenv, 4 fetchFromGitLab, 5 extra-cmake-modules, 6 kdePackages, 7 qtbase, 8 qtdeclarative, 9}: 10 11stdenv.mkDerivation rec { 12 pname = "kquickimageeditor"; 13 version = "0.5.1"; 14 15 src = fetchFromGitLab { 16 domain = "invent.kde.org"; 17 owner = "libraries"; 18 repo = pname; 19 rev = "v${version}"; 20 sha256 = "sha256-8TJBg42E9lNbLpihjtc5Z/drmmSGQmic8yO45yxSNQ4="; 21 }; 22 23 nativeBuildInputs = [ extra-cmake-modules ]; 24 buildInputs = [ 25 kdePackages.kirigami 26 qtbase 27 qtdeclarative 28 ]; 29 dontWrapQtApps = true; 30 31 meta = with lib; { 32 description = "Set of QtQuick components providing basic image editing capabilities"; 33 homepage = "https://invent.kde.org/libraries/kquickimageeditor"; 34 license = licenses.lgpl21Plus; 35 platforms = platforms.unix; 36 badPlatforms = platforms.darwin; 37 }; 38}