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

30 lines
816 B
Nix
Raw Normal View History

2019-12-08 04:59:15 +00:00
{ stdenv, fetchurl, mkDerivation, cmake, pkgconfig, qtbase, qtkeychain, sqlite }:
mkDerivation rec {
pname = "owncloud-client";
version = "2.5.4.11654";
src = fetchurl {
2016-04-03 02:02:54 +00:00
url = "https://download.owncloud.com/desktop/stable/owncloudclient-${version}.tar.xz";
sha256 = "0gsnry0786crbnpgg3f1vcqw6mwbz6svhm6mw3767qi4lb33jm31";
};
2017-03-17 22:53:10 +00:00
nativeBuildInputs = [ pkgconfig cmake ];
2019-12-08 04:59:15 +00:00
buildInputs = [ qtbase qtkeychain sqlite ];
cmakeFlags = [
"-UCMAKE_INSTALL_LIBDIR"
2019-12-08 04:59:15 +00:00
"-DNO_SHIBBOLETH=1"
];
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;
license = licenses.gpl2Plus;
};
}