2016-04-03 02:02:54 +00:00
|
|
|
{ stdenv, fetchurl, cmake, qt4, pkgconfig, qtkeychain, sqlite }:
|
2014-11-20 10:24:51 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "owncloud-client" + "-" + version;
|
|
|
|
|
2016-08-21 19:53:59 +00:00
|
|
|
version = "2.2.3";
|
2014-11-20 10:24:51 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-03 02:02:54 +00:00
|
|
|
url = "https://download.owncloud.com/desktop/stable/owncloudclient-${version}.tar.xz";
|
2016-08-21 19:53:59 +00:00
|
|
|
sha256 = "00bx9wrgvbdhi9vx30qfgkdz0k8nxlj313pac34cchx5xpij3jgq";
|
2014-11-20 10:24:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs =
|
2016-04-03 02:02:54 +00:00
|
|
|
[ cmake qt4 pkgconfig qtkeychain sqlite];
|
2014-11-20 10:24:51 +00:00
|
|
|
|
2016-05-12 11:10:46 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-UCMAKE_INSTALL_LIBDIR"
|
|
|
|
];
|
2014-11-20 10:24:51 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Synchronise your ownCloud with your computer using this desktop client";
|
|
|
|
homepage = https://owncloud.org;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ qknight ];
|
2014-12-17 16:59:18 +00:00
|
|
|
meta.platforms = stdenv.lib.platforms.unix;
|
2014-11-20 10:24:51 +00:00
|
|
|
};
|
|
|
|
}
|