owncloud-client: 2.2.3 -> 2.3.0
This commit is contained in:
parent
1129f92f65
commit
8b23d535d3
|
@ -1,17 +1,16 @@
|
||||||
{ stdenv, fetchurl, cmake, qt4, pkgconfig, qtkeychain, sqlite }:
|
{ stdenv, fetchurl, cmake, qt4, pkgconfig, qtkeychain, sqlite }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "owncloud-client" + "-" + version;
|
name = "owncloud-client-${version}";
|
||||||
|
version = "2.3.0";
|
||||||
version = "2.2.3";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://download.owncloud.com/desktop/stable/owncloudclient-${version}.tar.xz";
|
url = "https://download.owncloud.com/desktop/stable/owncloudclient-${version}.tar.xz";
|
||||||
sha256 = "00bx9wrgvbdhi9vx30qfgkdz0k8nxlj313pac34cchx5xpij3jgq";
|
sha256 = "10ah4zmnv4hfi50k59qwk990h1a4g95d3yvxqqrv4x1dv8p2sscf";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =
|
nativeBuildInputs = [ pkgconfig cmake ];
|
||||||
[ cmake qt4 pkgconfig qtkeychain sqlite];
|
buildInputs = [ qt4 qtkeychain sqlite];
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-UCMAKE_INSTALL_LIBDIR"
|
"-UCMAKE_INSTALL_LIBDIR"
|
||||||
|
@ -19,10 +18,10 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Synchronise your ownCloud with your computer using this desktop client";
|
description = "Synchronise your ownCloud with your computer using this desktop client";
|
||||||
homepage = https://owncloud.org;
|
homepage = https://owncloud.org;
|
||||||
maintainers = with stdenv.lib.maintainers; [ qknight ];
|
maintainers = [ maintainers.qknight ];
|
||||||
meta.platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue