about summary refs log tree commit diff
path: root/pkgs/applications
Commit message (Collapse)AuthorAge
* Merge pull request #166538 from bobby285271/bankingBobby Rong2022-04-03
|\ | | | | banking: fix build with meson 0.61
| * banking: fix build with meson 0.61Bobby Rong2022-03-31
| |
* | Merge pull request #166889 from rnhmjoj/pr-quteMichele Guerini Rocco2022-04-02
|\ \ | | | | | | qutebrowser: 2.4.0 -> 2.5.0
| * | qutebrowser: 2.4.0 -> 2.5.0rnhmjoj2022-04-02
| | |
* | | maestral: add NixOS testsPeter Hoeg2022-04-03
| | |
* | | cryptowatch-desktop: init at 0.5.0Lev Livnev2022-04-02
| | |
* | | qemu: add patch to fix MTP devicesmatthewcroughan2022-04-02
| | | | | | | | | | | | Co-authored-by: Alyssa Ross <hi@alyssa.is>
* | | davinci-resolve: unbreakUlrik Strid2022-04-02
| | |
* | | Merge pull request #166770 from illustris/sparkRobert Scott2022-04-02
|\ \ \ | | | | | | | | spark: CVE-2021-38296
| * | | spark: 3.1.2 -> 3.1.3illustris2022-04-01
| | | |
| * | | spark: mark 2.4 as vulnerableillustris2022-04-01
| | | |
* | | | Merge pull request #165460 from r-ryantm/auto-update/bitwig-studioRyan Mulligan2022-04-02
|\ \ \ \ | | | | | | | | | | bitwig-studio: 4.2 -> 4.2.1
| * | | | bitwig-studio: 4.2 -> 4.2.1R. Ryantm2022-03-23
| | | | |
* | | | | Merge pull request #164980 from r-ryantm/auto-update/ipfsKevin Cox2022-04-02
|\ \ \ \ \ | | | | | | | | | | | | ipfs: 0.12.0 -> 0.12.1
| * | | | | ipfs: 0.12.0 -> 0.12.1R. Ryantm2022-03-20
| | | | | |
* | | | | | vcluster: 0.6.0 -> 0.7.0R. Ryantm2022-04-02
| | | | | |
* | | | | | fluxctl: 1.24.3 -> 1.25.0R. Ryantm2022-04-02
| | | | | |
* | | | | | helmfile: 0.143.3 -> 0.143.5R. Ryantm2022-04-02
| | | | | |
* | | | | | argo: 3.3.0 -> 3.3.1R. Ryantm2022-04-02
| | | | | |
* | | | | | Merge pull request #166893 from andersk/zulipBobby Rong2022-04-02
|\ \ \ \ \ \ | | | | | | | | | | | | | | zulip: 5.8.1 → 5.9.0
| * | | | | | zulip: 5.8.1 → 5.9.0Anders Kaseorg2022-04-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Anders Kaseorg <andersk@mit.edu>
* | | | | | | Merge pull request #166916 from OPNA2608/update/palemoonAnderson Torres2022-04-02
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | palemoon: 29.4.5 -> 29.4.5.1, add version test
| * | | | | | | palemoon: 29.4.5 -> 29.4.5.1, add version testOPNA26082022-04-02
| | | | | | | |
* | | | | | | | Merge pull request #166430 from alyssais/openssl-static-retry7c6f434c2022-04-02
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | treewide: use lib.getLib for OpenSSL libraries
| * | | | | | | | treewide: use lib.getLib for OpenSSL librariesAlyssa Ross2022-03-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | At some point, I'd like to make another attempt at 71f1f4884b5 ("openssl: stop static binaries referencing libs"), which was reverted in 195c7da07df. 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.
* | | | | | | | | Merge pull request #166914 from taku0/mozc_emacs_helperadisbladis2022-04-02
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | mozc: make mozc.el to find mozc_emacs_helper
| * | | | | | | | | mozc: make mozc.el to find mozc_emacs_helpertaku02022-04-02
| | |/ / / / / / / | |/| | | | | | |
* | | | | | | | | imagemagick6: remove erictapen as maintainerKerstin Humm2022-04-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I haven't looked at this package for a long time, so let's reflect that fact in the maintainer field.
* | | | | | | | | drawing: 0.8.5 -> 1.0.0R. Ryantm2022-04-02
| | | | | | | | |
* | | | | | | | | Merge pull request #166872 from michaeladler/ungoogled-chromiumMichele Guerini Rocco2022-04-02
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | ungoogled-chromium: added myself as maintainer
| * | | | | | | | ungoogled-chromium: added myself as maintainerMichael Adler2022-04-01
| | | | | | | | |
* | | | | | | | | Merge pull request #166815 from SuperSandro2000/gofuSandro2022-04-02
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | gofu: unstable-2021-09-11 -> unstable-2022-04-01Sandro Jäckel2022-04-01
| | | | | | | | | |
* | | | | | | | | | Merge pull request #166877 from r-ryantm/auto-update/gpxseeVlad M2022-04-02
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | gpxsee: 10.4 -> 10.5
| * | | | | | | | | | gpxsee: 10.4 -> 10.5R. Ryantm2022-04-01
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #166586 from 06kellyjac/driftctlBobby Rong2022-04-02
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | driftctl: 0.25.0 -> 0.26.0
| * | | | | | | | | | | driftctl: 0.25.0 -> 0.26.006kellyjac2022-03-31
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #166395 from bobby285271/chattyBobby Rong2022-04-02
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | chatty: fix build with meson 0.61
| * | | | | | | | | | | | chatty: fix build with meson 0.61Bobby Rong2022-03-30
| | |_|_|_|_|/ / / / / / | |/| | | | | | | | | |
* | | | | | | | | | | | Merge pull request #166661 from malob/fix-kitty-build-darwinArtturi2022-04-02
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | kitty: add patch to fix -stack_size flag issue on darwinMalo Bourgon2022-04-01
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #152113 from davidak/resolvedavidak2022-04-02
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | davinci-resolve: init at 17.4.3
| * | | | | | | | | | | | | davinci-resolve: init at 17.4.3davidak2022-04-02
| | |_|_|_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Thiago Franco de Moraes <totonixsame@gmail.com>
* | | | | | | | | | | | | taskwarrior-tui: 0.21.1 -> 0.22.0R. Ryantm2022-04-01
| | | | | | | | | | | | |
* | | | | | | | | | | | | verco: 6.7.0 -> 6.8.0R. Ryantm2022-04-01
|/ / / / / / / / / / / /
* | | | | | | | | | | | Merge pull request #166869 from mweinelt/gitlabMartin Weinelt2022-04-01
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | gitlab: 14.9.1 -> 14.9.2Martin Weinelt2022-04-01
| | |_|_|_|_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://about.gitlab.com/releases/2022/03/31/critical-security-release-gitlab-14-9-2-released/ Fixes: CVE-2022-1162, CVE-2022-1175, CVE-2022-1190, CVE-2022-1185, CVE-2022-1148, CVE-2022-1121, CVE-2022-1120, CVE-2022-1100, CVE-2022-1193, CVE-2022-1105, CVE-2022-1099, CVE-2022-1174, CVE-2022-1188, CVE-2022-0740, CVE-2022-1189, CVE-2022-1157, CVE-2022-1111
* | | | | | | | | | | | Merge pull request #166873 from qowoz/podmanadisbladis2022-04-02
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | podman: 4.0.2 -> 4.0.3
| * | | | | | | | | | | | podman: 4.0.2 -> 4.0.3zowoq2022-04-02
| |/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/containers/podman/releases/tag/v4.0.3
* | | | | | | | | | | | Merge pull request #166861 from r-ryantm/auto-update/go-ethereumadisbladis2022-04-02
|\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / |/| | | | | | | | | | | go-ethereum: 1.10.16 -> 1.10.17