Commit Graph

515 Commits

Author SHA1 Message Date
José Romildo
1072e203b3 {anydesk,btrbk,nncp}: simplify update script
- There is no need to pass pname and version arguments

- The version lister does not use positional arguments anymore, but
option arguments. Removed the echo command to fix an issue regarding
this.
2022-09-27 23:41:53 -03:00
Sean Buckley
fbfca3d7fe vmware-horizon-client: 2203 -> 2206 2022-08-31 15:38:06 -04:00
R. Ryantm
8b0c8a49b1 waypipe: 0.8.2 -> 0.8.3 2022-08-12 03:32:04 +00:00
R. Ryantm
053fb00690 freerdp: 2.7.0 -> 2.8.0 2022-08-08 12:01:36 +08:00
Mustafa Çalışkan
c4a9eafb61 remmina: 1.4.25 -> 1.4.27 2022-08-03 22:04:48 +02:00
Mario Rodas
9be89ff2f6
Merge pull request #181223 from azahi/citrix
citrix_workspace: 22.05.0 -> 22.07.0
2022-07-24 16:06:05 -05:00
Azat Bahawi
3e10c3cfa7
citrix_workspace: 22.05.0 -> 22.07.0 2022-07-20 11:29:27 +03:00
Michael Weiss
e31629ec05
neatvnc,wayvnc: Add nickcao as the new maintainer
Thanks for picking this package up :)
2022-07-17 15:32:50 +02:00
Michael Weiss
514991b16f
neatvnc,wayvnc: Remove myself as maintainer
I don't really use/need VNC anymore and lack time to properly maintain
those packages.
2022-07-17 15:17:40 +02:00
Artturi
80c3d6e8ca
Merge pull request #180854 from jiegec/aws-workspaces
aws-workspaces: 4.0.1.1302 -> 4.1.0.1523
2022-07-16 14:49:50 +03:00
Artturi
bb9e7614b5
Merge pull request #180947 from NickCao/wayvnc
wayvnc: 0.4.1 -> 0.5.0
2022-07-16 06:59:40 +03:00
Sean Buckley
3e5fba739b vmware-horizon-client: use legacy UI 2022-07-13 10:54:50 -04:00
marius david
6bca1a6416 rustdesk: 1.1.8 -> 1.1.9, fix 2022-07-11 03:25:55 -04:00
Nick Cao
6ff9229f84
wayvnc: 0.4.1 -> 0.5.0 2022-07-10 17:00:57 +08:00
Jiajie Chen
bc9d72b9dc aws-workspaces: 4.0.1.1302 -> 4.1.0.1523 2022-07-09 20:50:42 +08:00
Mauricio Scheffer
0db2c988d3 aws-workspaces: pin icu
Fixes #176260
2022-07-09 20:49:42 +08:00
ajs124
93039509cf maintainers: remove dasuxullebt
no github handle linked. github account with same name has not had activity for years
2022-06-29 00:52:13 +02:00
ajs124
a0718341e6 maintainers: remove volth
github account deleted
2022-06-29 00:52:12 +02:00
R. Ryantm
8999fd199f anydesk: 6.1.1 -> 6.2.0 2022-06-25 00:19:04 +00:00
Robert Scott
466c2e342a treewide/applications: add sourceType binaryNativeCode for many packages 2022-06-23 18:38:19 +01:00
Sandro
0de1ad7cda
Merge pull request #162208 from michaeladler/citrix
citrix_workspace: 21.12.0 -> 22.05.0, added myself as maintainer
2022-06-02 22:47:21 +02:00
Michael Adler
1a729fc830 citrix_workspace: drop support for 20.X 2022-06-02 12:19:28 +02:00
Michael Adler
8235de6d5c citrix_workspace: added myself as maintainer 2022-06-02 11:09:45 +02:00
Michael Adler
fcea400842 citrix_workspace: 21.12.0 -> 22.05.0 2022-06-02 11:09:34 +02:00
Ilya Fedin
caa832cbc6 teamviewer: set outputs to reduce runtime closure 2022-05-13 21:01:06 +04:00
Krzysztof Nazarewski
27424231b3
teamviewer: 15.26.4 -> 15.29.4 2022-05-09 18:18:28 +02:00
Linus Heckemann
0a803ad709 freerdp: 2.6.1 -> 2.7.0 2022-04-25 17:03:40 +02:00
Vladimír Čunát
d5d94127fd
Merge branch 'staging-next' into staging
Minor conflicts; I hope I didn't mess up:
	pkgs/development/tools/misc/binutils/default.nix
	pkgs/games/openjk/default.nix
2022-04-14 09:53:21 +02:00
R. Ryantm
ffa3fa9d76 vmware-horizon-client: 2111 -> 2203 2022-04-06 17:40:18 +00:00
github-actions[bot]
ffa96ab0c0
Merge staging-next into staging 2022-04-02 18:01:37 +00:00
Alyssa Ross
fd78240ac8
treewide: use lib.getLib for OpenSSL libraries
At some point, I'd like to make another attempt at
71f1f4884b ("openssl: stop static binaries referencing libs"), which
was reverted in 195c7da07d.  One problem with my previous attempt is
that I moved OpenSSL's libraries to a lib output, but many dependent
packages were hardcoding the out output as the location of the
libraries.  This patch fixes every such case I could find in the tree.
It won't have any effect immediately, but will mean these packages
will automatically use an OpenSSL lib output if it is reintroduced in
future.

This patch should cause very few rebuilds, because it shouldn't make
any change at all to most packages I'm touching.  The few rebuilds
that are introduced come from when I've changed a package builder not
to use variable names like openssl.out in scripts / substitution
patterns, which would be confusing since they don't hardcode the
output any more.

I started by making the following global replacements:

    ${pkgs.openssl.out}/lib -> ${lib.getLib pkgs.openssl}/lib
    ${openssl.out}/lib -> ${lib.getLib openssl}/lib

Then I removed the ".out" suffix when part of the argument to
lib.makeLibraryPath, since that function uses lib.getLib internally.

Then I fixed up cases where openssl was part of the -L flag to the
compiler/linker, since that unambigously is referring to libraries.

Then I manually investigated and fixed the following packages:

 - pycurl
 - citrix-workspace
 - ppp
 - wraith
 - unbound
 - gambit
 - acl2

I'm reasonably confindent in my fixes for all of them.

For acl2, since the openssl library paths are manually provided above
anyway, I don't think openssl is required separately as a build input
at all.  Removing it doesn't make a difference to the output size, the
file list, or the closure.

I've tested evaluation with the OfBorg meta checks, to protect against
introducing evaluation failures.
2022-03-30 15:10:00 +00:00
github-actions[bot]
8357b101a5
Merge staging-next into staging 2022-03-25 12:02:05 +00:00
Felix Buehler
3bc5196252 treewide: rename name to pname&version 2022-03-23 22:55:50 +01:00
Naïm Favier
9160044f5f
treewide/makeWrapper: replace --run cd with --chdir
Lay the groundwork for switching to binary wrappers by reducing uses
of `--run` (which is not supported by `makeBinaryWrapper`).
2022-03-19 09:46:31 +01:00
R. Ryantm
b8b8edcc7d remmina: 1.4.24 -> 1.4.25 2022-03-15 06:49:42 +00:00
Shawn8901
ee21acc36a remmina: Set WITH_VTE=true, so remmina usable as ssh client 2022-03-12 14:34:22 +00:00
Maciej Krüger
5100549f4d
Merge pull request #163160 from mkg20001/x2go
x2goclient: fix #163122 crash after connection
2022-03-09 00:19:09 +01:00
R. Ryantm
db964ae0fa freerdp: 2.6.0 -> 2.6.1 2022-03-08 18:23:09 +08:00
Maciej Krüger
1b8636ed7c
x2goclient: fix #163122 crash after connection 2022-03-07 16:10:41 +01:00
LeixB
681fdf81b6
rustdesk: init at 1.1.8 2022-03-03 15:49:40 +01:00
R. Ryantm
f69cd3d324 freerdp: 2.5.0 -> 2.6.0 2022-02-25 16:55:53 -08:00
K900
cb2cfba6f7 treewide: switch all desktop file generators to new API
Notably:
- remove explicit arguments that match the defaults
- convert everything to the right Nix types
2022-02-25 13:40:38 -08:00
zseri
9bc2cd9866 remmina: make it easier to disable libsecret 2022-02-23 23:38:06 +01:00
R. Ryantm
2336034867 remmina: 1.4.23 -> 1.4.24 2022-02-20 08:13:49 -06:00
Sandro
b9a9a5db84
Merge pull request #149713 from buckley310/vmwareview 2022-02-05 17:55:21 +01:00
R. Ryantm
7329aa8229 teamviewer: 15.25.5 -> 15.26.4 2022-01-31 09:06:51 -08:00
Linus Heckemann
cc116a47ef
Merge pull request #154853 from NixOS/u/freerdp
freerdp: 2.4.1 -> 2.5.0
2022-01-23 19:37:57 +01:00
Ryan Mulligan
39d44048bf
Merge pull request #155884 from r-ryantm/auto-update/remmina
remmina: 1.4.20 -> 1.4.23
2022-01-21 12:54:22 -08:00
Nick Cao
ab67b82d7b
waypipe: fix cross compilation, set strictDeps 2022-01-21 10:45:53 +08:00
R. Ryantm
98b60db675 remmina: 1.4.20 -> 1.4.23 2022-01-20 14:06:40 +00:00