2017-04-30 19:53:17 +02:00
|
|
|
{ stdenv, fetchurl, cmake, pkgconfig, qtbase, qtwebkit, qtkeychain, sqlite }:
|
2014-11-20 11:24:51 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-17 23:53:10 +01:00
|
|
|
name = "owncloud-client-${version}";
|
2018-01-12 18:02:21 +01:00
|
|
|
version = "2.3.4";
|
2014-11-20 11:24:51 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-03 04:02:54 +02:00
|
|
|
url = "https://download.owncloud.com/desktop/stable/owncloudclient-${version}.tar.xz";
|
2018-01-12 18:02:21 +01:00
|
|
|
sha256 = "1fpi1mlp2b8sx2993b4mava5c6qw794dmlayih430299z1l9wh49";
|
2014-11-20 11:24:51 +01:00
|
|
|
};
|
|
|
|
|
2017-11-22 20:11:18 +01:00
|
|
|
patches = [ ../nextcloud-client/find-sql.patch ];
|
|
|
|
|
2017-03-17 23:53:10 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
2017-04-30 19:53:17 +02:00
|
|
|
buildInputs = [ qtbase qtwebkit qtkeychain sqlite ];
|
2014-11-20 11:24:51 +01:00
|
|
|
|
2016-05-12 13:10:46 +02:00
|
|
|
cmakeFlags = [
|
2017-03-19 00:33:41 +01:00
|
|
|
"-UCMAKE_INSTALL_LIBDIR"
|
2016-05-12 13:10:46 +02:00
|
|
|
];
|
2014-11-20 11:24:51 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-03-17 23:53:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-11-20 11:24:51 +01:00
|
|
|
description = "Synchronise your ownCloud with your computer using this desktop client";
|
|
|
|
homepage = https://owncloud.org;
|
2017-03-17 23:53:10 +01:00
|
|
|
maintainers = [ maintainers.qknight ];
|
|
|
|
platforms = platforms.unix;
|
2014-11-20 11:24:51 +01:00
|
|
|
};
|
|
|
|
}
|