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

30 lines
822 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig, qtbase, qtwebkit, qtkeychain, sqlite }:
stdenv.mkDerivation rec {
2017-03-17 22:53:10 +00:00
name = "owncloud-client-${version}";
2018-04-26 17:08:50 +00:00
version = "2.4.1";
src = fetchurl {
2016-04-03 02:02:54 +00:00
url = "https://download.owncloud.com/desktop/stable/owncloudclient-${version}.tar.xz";
2018-04-26 17:08:50 +00:00
sha256 = "4462ae581c281123dc62f3604f1aa54c8f4a60cd8157b982e2d76faac0f7aa23";
};
2018-04-26 17:08:50 +00:00
patches = [ ./find-sql.patch ];
2017-03-17 22:53:10 +00:00
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ qtbase qtwebkit 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;
};
}