nixpkgs/pkgs/applications/networking/owncloud-client/default.nix

28 lines
747 B
Nix
Raw Normal View History

2016-04-03 02:02:54 +00:00
{ stdenv, fetchurl, cmake, qt4, pkgconfig, qtkeychain, sqlite }:
stdenv.mkDerivation rec {
2017-03-17 22:53:10 +00:00
name = "owncloud-client-${version}";
version = "2.3.0";
src = fetchurl {
2016-04-03 02:02:54 +00:00
url = "https://download.owncloud.com/desktop/stable/owncloudclient-${version}.tar.xz";
2017-03-17 22:53:10 +00:00
sha256 = "10ah4zmnv4hfi50k59qwk990h1a4g95d3yvxqqrv4x1dv8p2sscf";
};
2017-03-17 22:53:10 +00:00
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ qt4 qtkeychain sqlite];
cmakeFlags = [
"-UCMAKE_INSTALL_LIBDIR"
];
enableParallelBuilding = true;
2017-03-17 22:53:10 +00:00
meta = with stdenv.lib; {
description = "Synchronise your ownCloud with your computer using this desktop client";
homepage = https://owncloud.org;
2017-03-17 22:53:10 +00:00
maintainers = [ maintainers.qknight ];
platforms = platforms.unix;
};
}