Niklas Hambüchen
6df94f6688
Merge pull request #78386 from plumelo/feature/remmina-1.3.10
...
remmina: 1.3.9 -> 1.3.10
2020-01-23 20:42:20 +01:00
Meghea Iulian
3f46a4afab
remmina: 1.3.9 -> 1.3.10
2020-01-23 21:10:57 +02:00
chris
67509cc831
Updated the terraform providers
2020-01-23 10:34:48 -08:00
Pavol Rusnak
e65da6853f
dat: init at 13.13.1
2020-01-23 13:18:11 +01:00
Mario Rodas
d0819c05b3
terraform: 0.12.19 -> 0.12.20
...
Changelog: https://github.com/hashicorp/terraform/releases/tag/v0.12.20
2020-01-22 18:18:18 -05:00
Olli Helenius
2356a43830
teams: 1.2.00.32451 -> 1.3.00.958
2020-01-22 14:18:52 -08:00
worldofpeace
a7e403280e
Merge pull request #78296 from thefloweringash/chatterino-qt-wrapper
...
chatterino2: use mkDerivation from qt
2020-01-22 17:09:06 -05:00
Matt Smith
a76b5a2c94
maintainers: remove 00-matt
2020-01-22 21:12:43 +00:00
Ryan Mulligan
0e1e99d42d
Merge pull request #78248 from r-ryantm/auto-update/palemoon
...
palemoon: 28.8.0 -> 28.8.1
2020-01-22 08:18:18 -08:00
Andrew Childs
7e0dd3833d
chatterino2: use mkDerivation from qt
2020-01-23 01:00:34 +09:00
Michael Weiss
393b3e8746
tdesktop: 1.9.3 -> 1.9.4 ( #78274 )
2020-01-22 14:29:47 +01:00
Patrick Hilhorst
593e11fd94
treewide: fix redirected urls
...
According to https://repology.org/repository/nix_unstable/problems , we have a
lot of packages that have http links that redirect to https as their homepage.
This commit updates all these packages to use the https links as their
homepage.
The following script was used to make these updates:
```
curl https://repology.org/api/v1/repository/nix_unstable/problems \
| jq '.[] | .problem' -r \
| rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \
| sort | uniq > script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```
2020-01-22 11:26:22 +01:00
Johan Thomsen
a96ed5d704
kubernetes: 1.16.4 -> 1.16.5
2020-01-22 00:04:04 -08:00
R. RyanTM
3aa2742e2b
palemoon: 28.8.0 -> 28.8.1
2020-01-22 07:48:38 +00:00
R. RyanTM
9bc06937b5
opera: 65.0.3467.48 -> 66.0.3515.36
2020-01-22 04:52:54 +00:00
Will Dietz
3bf9cc3154
Merge pull request #76767 from dtzWill/update/spectral-2019-12-23
...
spectral: unstable 2019-08-30 -> 817, olm: cmake+clean
2020-01-21 16:25:49 -06:00
Andreas Rammhold
a7a85a015c
Merge pull request #78153 from taku0/firefox-bin-72.0.2
...
firefox, firefox-bin: 72.0.1 -> 72.0.2, firefox-esr: 68.4.1esr -> 68.4.2esr
2020-01-21 14:36:02 +01:00
taku0
249e3d0ef3
firefox-esr: 68.4.1esr -> 68.4.2esr
2020-01-21 20:04:04 +09:00
taku0
57aed520d8
firefox: 72.0.1 -> 72.0.2
2020-01-21 19:59:34 +09:00
taku0
7187891a17
firefox-bin: 72.0.1 -> 72.0.2
2020-01-21 19:55:44 +09:00
Mario Rodas
5d7f7fbf5e
flexget: 3.0.31 -> 3.1.10
2020-01-20 18:18:18 -05:00
Ian M. Jones
96d2790061
onedrive: 2.3.12 -> 2.3.13
2020-01-20 13:53:59 +00:00
Ivan Kozik
76ab11518d
treewide: Remove myself from maintainers on some packages ( #78027 )
2020-01-19 12:18:34 -05:00
Mario Rodas
8ac5308c6a
Merge pull request #77885 from r-ryantm/auto-update/luigi
...
luigi: 2.8.0 -> 2.8.11
2020-01-19 09:23:05 -05:00
Mario Rodas
4473eee95f
Merge pull request #77887 from r-ryantm/auto-update/magnetico
...
magnetico: 0.8.1 -> 0.9.0
2020-01-19 09:03:39 -05:00
Francesco Zanini
2a6b2342df
captive-browser: runs on all platforms
2020-01-19 10:27:27 +01:00
Michael Weiss
f430ac79b8
Merge pull request #77453 from primeos/tdesktop
...
tdesktop: 1.8.15 -> 1.9.3
2020-01-19 00:01:48 +01:00
Michael Weiss
1835ac1d79
tdesktop: 1.8.15 -> 1.9.3
...
The GYP build is now deprecated [0].
This results in a large number of changes and many custom Nix patches
aren't required anymore (and probably haven't been required for quite
some time now, the derivation got a bit outdated...).
A lot of the changes in this commit are based on the changes of the
Arch package [1][2] (which our package is based upon).
Rough overview of the changes:
- gcc9 -> ninja (optional but let's follow Arch here)
- Dropped GYP, only CMake now
- But: Python is still required
- fetchFromGitHub -> fetchurl (optional?)
- Apply all Arch patches and remove old patches
- Requires one new patch for range-v3
- New dependencies: enchant2, lz4, xxHash
- TODO: Plus a few new dependencies that shouldn't be required
- Cleanup: Irrelevant flags (e.g. GYP_DEFINES) and patches (e.g. sed)
- Simplifies quite a few things :)
- Some additional documentation and TODOs
Co-Authored-By: Jan Tojnar <jtojnar@gmail.com>
[0]: https://github.com/telegramdesktop/tdesktop/issues/7001
[1]: https://git.archlinux.org/svntogit/community.git/commit/?id=23eff2b1ef7435441e93120618ca899f0b0e7e61
[2]: https://git.archlinux.org/svntogit/community.git/commit/?id=6a19e949724b2e2bfcdcf2081111ecd46108e449
2020-01-18 23:28:10 +01:00
Tim Steinbach
ba059b9a23
vivaldi: 2.10.1745.26-1 -> 2.10.1745.27-1
2020-01-18 11:51:07 -05:00
Alan Hollis
4f4d792e70
gns3: Fix python package not being pinned ( #77701 )
...
Due to https://github.com/NixOS/nixpkgs/issues/44426 the correct psutils
package is not picked up, this commit changes the code so the correct
version is always picked.
2020-01-17 23:25:35 +01:00
worldofpeace
15e0b23f48
signal-desktop: use autoPatchelfHook, wrap properly ( #77850 )
...
Most prominently we don't use `phases` because of https://github.com/NixOS/nixpkgs/issues/28910 .
This is also problematic when using wrapGAppsHook.
In order to use wrapGAppsHook's automatic wrapping
(this was done manually before because there was no fixupPhase)
we need to install signal at lib/Signal instead of just into libexec.
That's because it would try to wrap .so files.
2020-01-17 22:51:06 +01:00
lewo
c80ebc9317
Merge pull request #77612 from misuzu/psi-plus
...
psi-plus: 1.4.904 -> 1.4.984
2020-01-17 18:37:41 +01:00
Frederik Rietdijk
bcd8c6b8dc
Merge master into staging-next
2020-01-17 17:08:16 +01:00
rht
e6ed469c09
signal-desktop: 1.29.5 -> 1.29.6
2020-01-17 09:05:39 -05:00
R. RyanTM
6e0fc1f772
magnetico: 0.8.1 -> 0.9.0
2020-01-17 08:32:02 +00:00
R. RyanTM
cf0640b982
luigi: 2.8.0 -> 2.8.11
2020-01-17 08:23:36 +00:00
Mario Rodas
0d7ca4ff08
Merge pull request #77663 from turboMaCk/skypeforlinux8.55.0.141
...
skypeforlinux: 8.55.0.123 -> 8.55.0.141
2020-01-16 21:07:06 -05:00
worldofpeace
40bef249f1
Merge pull request #77407 from jtcoolen/protonvpn-cli-ng
...
protonvpn-cli-ng: init at 2.2.0
2020-01-16 20:03:39 -05:00
Julien Coolen
b45c4d2d88
protonvpn-cli-ng: init at 2.2.0
2020-01-17 00:58:14 +01:00
Michael Weiss
8d5ec33939
signal-desktop: 1.29.4 -> 1.29.5
...
Changelog: https://github.com/signalapp/Signal-Desktop/releases/tag/v1.29.5
2020-01-16 23:14:15 +01:00
Oleksii Filonenko
eb4a2f510a
fluxctl: 1.16.0 -> 1.17.1
2020-01-16 16:39:41 +00:00
Mario Rodas
33941e49f2
Merge pull request #76868 from filalex77/tiny-0.5.0
...
tiny: init at 0.5.1
2020-01-16 10:19:41 -05:00
zowoq
8c7a5613f3
wireshark 3.2.0 -> 3.2.1
...
https://www.wireshark.org/docs/relnotes/wireshark-3.2.1.html
2020-01-16 08:09:22 +01:00
Silvan Mosberger
67373ae389
seafile-shared: 7.0.2 -> 7.0.5, seafile-client: 6.2.11 -> 7.0.5 ( #72656 )
...
seafile-shared: 7.0.2 -> 7.0.5, seafile-client: 6.2.11 -> 7.0.5
2020-01-15 23:45:40 +01:00
Silvan Mosberger
94e35fba8e
seafile-client: 6.2.11 -> 7.0.5
2020-01-15 23:02:09 +01:00
gnidorah
7093ddeaf2
rambox: fix meta
2020-01-15 21:19:29 +03:00
Michael Weiss
0e817dacd8
signal-desktop: 1.29.3 -> 1.29.4
...
Changelog: https://github.com/signalapp/Signal-Desktop/releases/tag/v1.29.4
2020-01-15 13:14:05 +01:00
Anders Kaseorg
3cd8ce3bce
treewide: Fix unsafe concatenation of $LD_LIBRARY_PATH
...
Naive concatenation of $LD_LIBRARY_PATH can result in an empty
colon-delimited segment; this tells glibc to load libraries from the
current directory, which is definitely wrong, and may be a security
vulnerability if the current directory is untrusted. (See #67234 , for
example.) Fix this throughout the tree.
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2020-01-15 09:47:03 +01:00
Frederik Rietdijk
2a88c3c302
Merge staging-next into staging
2020-01-15 09:23:28 +01:00
Mario Rodas
1f1c098a28
Merge pull request #75432 from mroi/patch-xhyve
...
docker-machine-xhyve: enable and fix lib9p file sharing
2020-01-14 21:19:29 -05:00
Michael Raskin
ad2289ad11
Merge pull request #77675 from taku0/flashplayer-32.0.0.314
...
flashplayer: 32.0.0.303 -> 32.0.0.314
2020-01-14 17:56:02 +00:00
leenaars
8df2444a35
Sylk: 2.1.0 -> 2.5.0 ( #77606 )
2020-01-14 17:25:33 +00:00
Marek Fajkus
c7f5569bd2
skypeforlinux: 8.55.0.123 -> 8.55.0.141
2020-01-14 10:13:20 +01:00
taku0
2becf7ffed
flashplayer: 32.0.0.303 -> 32.0.0.314
2020-01-14 15:13:06 +09:00
Luka Blaskovic
bff748bacb
ike: build with bison3
2020-01-13 21:35:19 +00:00
misuzu
9d28b0b95e
psi-plus: 1.4.904 -> 1.4.984
...
Also fix 'ld: cannot find -lsecret-1 error' on build and crash with 'This application failed to start because no Qt platform plugin could be initialized' error on startup.
2020-01-13 14:08:03 +02:00
Trolli Schmittlauch
04172da17b
cawbird: 1.0.3.1 -> 1.0.4
...
fixes a crash caused by invalid Twitter API data
2020-01-13 00:50:36 -08:00
Matthias Beyer
82f9e97ae4
mutt: 1.13.2 -> 1.13.3
2020-01-13 00:35:33 -08:00
Will Dietz
1e3ac89095
spectral: unstable-2019-08-30 -> 817
...
* libsecret, now req'd
* url updates
2020-01-12 21:26:35 -06:00
Niklas Hambüchen
2d4f45188d
Merge pull request #77053 from r-ryantm/auto-update/filezilla
...
filezilla: 3.46.0 -> 3.46.3
2020-01-13 00:21:20 +01:00
Marek Mahut
6438ed6bdc
Merge pull request #77368 from saschagrunert/cni
...
cni-plugins: v0.8.3 -> v0.8.4
2020-01-12 23:36:40 +01:00
Mario Rodas
08fd35f6ad
Merge pull request #77242 from r-ryantm/auto-update/remmina
...
remmina: 1.3.8 -> 1.3.9
2020-01-11 05:04:52 -05:00
taku0
f7c1c22747
thunderbird: 68.3.1 -> 68.4.1
2020-01-11 15:16:34 +09:00
taku0
ae41b779a9
thunderbird-bin: 68.3.1 -> 68.4.1
2020-01-11 15:12:44 +09:00
Mario Rodas
f4c73a568f
Merge pull request #74255 from filalex77/mullvad-vpn-2019.9
...
mullvad-vpn: 2019.8 -> 2019.10
2020-01-10 21:14:47 -05:00
Tim Steinbach
8665adc902
vivaldi: 2.10.1745.23-1 -> 2.10.1745.26-1
2020-01-10 20:48:43 -05:00
Mario Rodas
28eefd1ae2
Merge pull request #77245 from turboMaCk/google-talk-plugin-sha1-to-sha256
...
google_talk_plugin: sha1 -> sha256
2020-01-10 20:38:35 -05:00
Florian Klink
0e75514442
firefoxPackages.icecat: mark as insecure
...
It's based on 60.3.0, whose support ended around October 2019.
2020-01-10 20:19:19 +01:00
Graham Christensen
5a437278d0
Merge pull request #77458 from emilazy/tor-browser-bundle-bin-9.0.4
...
tor-browser-bundle-bin: 9.0.3 -> 9.0.4
2020-01-10 13:59:20 -05:00
Emily
05c0695c6b
tor-browser-bundle-bin: 9.0.3 -> 9.0.4
2020-01-10 18:57:02 +00:00
adisbladis
7750fd5555
firefox-beta-bin: 72.0b3 -> 73.0b3
2020-01-10 18:40:53 +00:00
adisbladis
7a023738dd
firefox-devedition-bin: 72.0b11 -> 73.0b3
2020-01-10 18:40:10 +00:00
Florian Klink
1efaa03d95
firefoxPackages.tor-browser*, tor-browser-bundle: remove
...
These are all based on firefox versions with known vulnerabilities
exploited in the wild.
We seriously shouldn't ship this in nixpkgs, especially not for
sensitive applications as the Tor Browser.
`tor-browser-bundle` is just a wrapper around
`firefoxPackages.tor-browser`, so let's remove it too.
`tor-browser-bundle-bin` is the much safer bet, which is individually
downloaded from `dist.torproject.org` and just `patchelf`-ed locally to
work on NixOS.
Co-Authored-By: Alyssa Ross <hi@alyssa.is>
Co-Authored-By: Andreas Rammhold <andreas@rammhold.de>
Co-Authored-By: Graham Christensen <graham@grahamc.com>
2020-01-10 18:34:22 +01:00
Michael Weiss
b333f39de7
gns3-{gui,server}: 2.2.3 -> 2.2.5
2020-01-10 17:57:24 +01:00
Vladimír Čunát
f703a3a04a
firefox-esr-60: mark as vulnerable
...
The last release was in September, so it's surely "vulnerable" now.
https://www.mozilla.org/en-US/firefox/60.9.0/releasenotes/
This is the same appproach we've taken for esr-52.
2020-01-10 17:08:01 +01:00
Emery Hemingway
dcf9c11477
trojita: add explicit libsecret dependency
...
This was previously a transitive dependency.
Fix #77296
2020-01-10 13:46:48 +01:00
Florian Klink
0c26ef9e76
Merge pull request #77425 from emmanuelrosa/qutebrowser-1.9
...
qutebrowser: 1.8.3 -> 1.9.0
2020-01-10 11:35:13 +01:00
Emmanuel Rosa
216dea5b9d
qutebrowser: 1.8.3 -> 1.9.0
...
Closes #77360
2020-01-10 16:05:17 +07:00
worldofpeace
75f9b2f91f
Merge pull request #77375 from lheckemann/calls-0.1.1
...
calls: unstable-2019-10-29 -> 0.1.1
2020-01-09 16:19:12 -05:00
Joachim F
ec1f3aba86
Merge pull request #77340 from dtzWill/update/tor-browser-bundle-bin-9.0.3
...
tor-browser-bundle-bin: 9.0.2 -> 9.0.3
2020-01-09 17:25:29 +00:00
Linus Heckemann
1e3fbfbf5e
calls: unstable-2019-10-29 -> 0.1.1
2020-01-09 15:19:10 +01:00
Daniel Frank
0271b2c9a0
firefox-bin: 72.0 -> 72.0.1 [security] CVE-2019-17026
2020-01-09 15:02:34 +01:00
Sascha Grunert
acd334c5b6
cni-plugins: v0.8.3 -> v0.8.4
...
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2020-01-09 14:28:24 +01:00
Mario Rodas
a5f4a12fb8
Merge pull request #76448 from r-ryantm/auto-update/suricata
...
suricata: 5.0.0 -> 5.0.1
2020-01-09 05:37:13 -05:00
Mario Rodas
47cd3b5222
Merge pull request #77163 from r-ryantm/auto-update/mpop
...
mpop: 1.4.6 -> 1.4.7
2020-01-09 05:19:07 -05:00
Mario Rodas
39ab81fc26
Merge pull request #77164 from r-ryantm/auto-update/msmtp
...
msmtp: 1.8.6 -> 1.8.7
2020-01-09 05:09:30 -05:00
Mario Rodas
bda5f7964b
Merge pull request #77350 from marsam/update-terraform
...
terraform: 0.12.18 -> 0.12.19
2020-01-09 04:45:25 -05:00
Mario Rodas
9ab9bb4ab6
terraform: 0.12.18 -> 0.12.19
...
Changelog: https://github.com/hashicorp/terraform/releases/tag/v0.12.19
2020-01-08 18:00:00 -05:00
Andreas Rammhold
b4983fe20b
firefox: fix build of >=72 on aarch64
2020-01-08 23:39:26 +01:00
Andreas Rammhold
204d32a746
firefox-esr-68: 68.4.0esr -> 68.4.1esr
2020-01-08 23:39:26 +01:00
Andreas Rammhold
aab1f2dfe2
firefox: 72.0 -> 72.0.1
2020-01-08 23:39:26 +01:00
Will Dietz
19879a7f7b
tor-browser-bundle-bin: 9.0.2 -> 9.0.3
...
https://blog.torproject.org/new-release-tor-browser-903
2020-01-08 15:51:18 -06:00
Oleksii Filonenko
cb132f981f
tiny: init at 0.5.1
2020-01-08 21:14:53 +02:00
Andreas Rammhold
40018e5987
firefox: 71.0 -> 72.0
2020-01-08 17:06:35 +01:00
Andreas Rammhold
2ad59bdf8c
firefox-esr-68: 68.3.0esr -> 68.4.0esr
2020-01-08 14:48:30 +01:00
Andreas Rammhold
a36a9127bb
firefox-devedition-bin: 72.0b11 -> 73.0b2
2020-01-08 14:48:30 +01:00
Andreas Rammhold
47804d55b4
firefox-beta-bin: 72.0b4 -> 73.0b2
2020-01-08 14:48:30 +01:00
Andreas Rammhold
1064ac96b9
firefix-bin: 71.0 -> 72.0
2020-01-08 14:48:30 +01:00
Andreas Rammhold
6d8208e373
firefox: prepare for firefox 72
2020-01-08 14:48:30 +01:00
Mario Rodas
68cea76f36
Merge pull request #77089 from r-ryantm/auto-update/gnunet
...
gnunet: 0.12.0 -> 0.12.1
2020-01-08 05:20:00 -05:00