Commit Graph

37 Commits

Author SHA1 Message Date
Daniel Ebbert
e6b4d398bf
owncloud-client: 2.9.2 -> 2.10.0 2022-01-20 17:57:25 +01:00
R. Ryantm
ef734fcbc8 owncloud-client: 2.9.1.5500 -> 2.9.2.6206 2021-12-08 14:22:09 +00:00
Daniel Ebbert
2cf748bba2
owncloud-client: 2.9.0 -> 2.9.1 2021-10-15 09:57:06 +02:00
Daniel Ebbert
d3e7c6df18
owncloud-client: 2.8.4 -> 2.9.0 (#135876)
* owncloud-client: Switch to Qt version 5
* owncloud-client: 2.8.4 -> 2.9.0
2021-09-16 09:28:57 +08:00
Daniel Ebbert
9125a1f063
owncloud-client: 2.6.3.14058 -> 2.8.2.4246 2021-06-29 08:50:50 +02:00
Pavol Rusnak
a6ce00c50c
treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
Jonathan Ringer
9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Ben Siraphob
3ae5e6ce03 treewide: remove enableParallelBuilding = true if using cmake 2021-01-03 18:37:40 +07:00
R. RyanTM
8778d362bc owncloud-client: 2.5.4.11654 -> 2.6.3.14058 2020-08-31 17:11:38 +02:00
Fabian Hauser
cf0552de9b owncloud-client: add libsecret dependency
The libsecret dependency is required to access secrets from the gnome keychain.
2020-07-02 23:11:15 +02:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Dmitry Kalinkin
302a0be9db owncloud-client: disable shibboleth 2019-12-08 22:15:57 +01:00
Tobias Bora
e120e00d54 owncloud-client: Use qt5's own mkDerivation (#70187) 2019-10-01 17:48:23 -04:00
volth
46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
R. RyanTM
c51fcbc82f owncloud-client: 2.5.3.11470 -> 2.5.4.11654 (#58738)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/owncloud-client/versions
2019-04-09 19:01:20 +02:00
Raphael Borun Das Gupta
22c7c4b697 owncloud-client: 2.4.3 -> 2.5.3.11470 2019-02-21 10:22:54 +01:00
R. RyanTM
77a806dd4e owncloud-client: 2.4.2 -> 2.4.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/owncloud-client/versions.
2018-08-16 20:48:14 -07:00
Pascal Wittmann
f71165da03
owncloudclient: add license
see issue #43716
2018-08-09 12:46:06 +02:00
R. RyanTM
0e0f49438e owncloud-client: 2.4.1 -> 2.4.2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/owncloud-client/versions.
2018-07-21 13:44:41 -07:00
Bernard Fortz
882ed257d6 owncloud-client: 2.3.4 -> 2.4.1 2018-04-26 19:17:06 +02:00
adisbladis
1ec304ce01
owncloud-client: 2.3.3 -> 2.3.4 2018-01-13 04:03:34 +08:00
Bjørn Forsman
7e9b186fe4 owncloud-client: unbreak build
By reusing the nextcloud patch to find the "Sql" module (Qt5Sql).

https://hydra.nixos.org/build/64533236/nixlog/1/tail
2017-11-22 20:18:24 +01:00
Stefan Siegl
9fc87cc376 owncloud-client: 2.3.2 -> 2.3.3 2017-09-24 13:24:25 +02:00
Stefan Siegl
75290adaa9
owncloud-client: 2.3.1 -> 2.3.2 2017-07-21 23:19:45 +02:00
Bjørn Forsman
472fbe651f owncloud-client: 2.3.0 -> 2.3.1 2017-04-30 20:24:30 +02:00
Bjørn Forsman
fdcb4fa4b8 owncloud-client: unbreak build (qt58 -> qt56)
The build fails due to missing qt linguist tools. That's solved by
adding 'qttools'. But the build fails soon after with missing 'Sql'
module. I didn't manage to solve that, so use Qt 5.6 where it works.

Using libsForQt seems to be the way Qt packages are composed today, so
use that (seems safer).
2017-04-30 20:19:57 +02:00
Franz Pletz
2baf0a568a
owncloud-client: build with qt5 instead of qt4 2017-03-19 18:44:50 +01:00
ndowens
8b23d535d3 owncloud-client: 2.2.3 -> 2.3.0 2017-03-17 17:53:41 -05:00
Bjørn Forsman
5120af001f owncloud-client: 2.2.1 -> 2.2.3
Changelog: https://owncloud.org/changelog/desktop/
2016-08-21 21:55:38 +02:00
Cast
0efb130d50 owncloud: 2.1.1 -> 2.2.1 2016-06-16 19:10:20 +02:00
Mayeu - Cast
61b4f1463c owncloud-client: Fix "libocsync.so.0 not found" error
Close #15130
2016-06-02 08:48:09 +02:00
Micxjo Funkcio
23fad46b76
owncloudclient: 1.7.1 -> 2.1.1 2016-04-02 19:02:54 -07:00
Andrey Arapov
7ed1435aa9 owncloud: update to 1.7.1 2015-02-02 18:28:55 +01:00
Joachim Schiele
99b32b5a31 owncloud-client: added meta.platforms = stdenv.lib.platforms.unix; 2014-12-17 17:59:18 +01:00
Joachim Schiele
7a9ea00a78 owncloud-client: added meta.platforms = stdenv.lib.platforms.uniq; 2014-12-17 17:57:01 +01:00
Joachim Schiele
44e3246811 owncloudclient: initial 1.7.0 packaged added 2014-11-20 12:47:47 +01:00