9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, mkDerivation
|
|
, pkg-config
|
|
, cmake
|
|
, extra-cmake-modules
|
|
, callPackage
|
|
, qtbase
|
|
, qtkeychain
|
|
, wrapQtAppsHook
|
|
, qttools
|
|
, sqlite
|
|
, libsecret
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "owncloud-client";
|
|
version = "4.1.0";
|
|
|
|
libregraph = callPackage ./libre-graph-api-cpp-qt-client.nix { };
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "owncloud";
|
|
repo = "client";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-L0xeLYzlonzNClOcijyucGdwgQHTS7TlczIyJGbVQ5E=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config cmake extra-cmake-modules wrapQtAppsHook qttools ];
|
|
buildInputs = [ qtbase qtkeychain sqlite libsecret libregraph ];
|
|
|
|
cmakeFlags = [
|
|
"-UCMAKE_INSTALL_LIBDIR"
|
|
"-DNO_SHIBBOLETH=1"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Synchronise your ownCloud with your computer using this desktop client";
|
|
homepage = "https://owncloud.org";
|
|
maintainers = with maintainers; [ qknight hellwolf ];
|
|
platforms = platforms.unix;
|
|
broken = stdenv.isDarwin;
|
|
license = licenses.gpl2Plus;
|
|
changelog = "https://github.com/owncloud/client/releases/tag/v${version}";
|
|
};
|
|
}
|