8 stdenv.mkDerivation rec {
9 pname = "libre-graph-api-cpp-qt-client";
12 src = fetchFromGitHub {
15 rev = "refs/tags/v${version}";
16 hash = "sha256-wbdamPi2XSLWeprrYZtBUDH1A2gdp6/5geFZv+ZqSWk=";
19 sourceRoot = "${src.name}/client";
21 nativeBuildInputs = [ cmake ];
22 buildInputs = [ qt6.qtbase ];
23 dontWrapQtApps = true;
26 description = "C++ Qt API for Libre Graph, a free API for cloud collaboration inspired by the MS Graph API";
27 homepage = "https://owncloud.org";
28 maintainers = with maintainers; [ hellwolf ];
29 platforms = platforms.unix;
30 license = licenses.asl20;
31 changelog = "https://github.com/owncloud/libre-graph-api-cpp-qt-client/releases/tag/v${version}";