3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/owncloud-client/default.nix

29 lines
746 B
Nix
Raw Normal View History

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