forked from mirrors/nixpkgs
70df9ef248
owncloud: 3.2.1 -> 4.0.0
36 lines
871 B
Nix
36 lines
871 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, qtbase
|
|
, wrapQtAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libre-graph-api-cpp-qt-client";
|
|
version = "1.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "owncloud";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-wbdamPi2XSLWeprrYZtBUDH1A2gdp6/5geFZv+ZqSWk=";
|
|
};
|
|
|
|
sourceRoot = "source/client";
|
|
|
|
nativeBuildInputs = [ cmake wrapQtAppsHook ];
|
|
buildInputs = [ qtbase ];
|
|
|
|
cmakeFlags = [ ];
|
|
|
|
meta = with lib; {
|
|
description = "C++ Qt API for Libre Graph, a free API for cloud collaboration inspired by the MS Graph API";
|
|
homepage = "https://owncloud.org";
|
|
maintainers = with maintainers; [ qknight hellwolf ];
|
|
platforms = platforms.unix;
|
|
license = licenses.asl20;
|
|
changelog = "https://github.com/owncloud/libre-graph-api-cpp-qt-client/releases/tag/v${version}";
|
|
};
|
|
}
|