3
0
Fork 0
forked from mirrors/nixpkgs
Commit graph

7217 commits

Author SHA1 Message Date
Jan Tojnar b47bf79d2a Merge branch 'staging-next' into staging 2021-04-07 05:41:17 +02:00
Jan Tojnar 714ef27ffe Merge branch 'master' into staging-next 2021-04-07 05:32:57 +02:00
Alyssa Ross b0372cefc4
connman: set sysconfdir to /etc
If sysconfdir is set to something in connman's prefix, it's not
possible to change the configuration (at least without providing a
flag to connman).
2021-04-06 16:09:47 +00:00
Jan Tojnar 70babe5bcf Merge branch 'staging-next' into staging 2021-04-06 16:25:41 +02:00
Jan Tojnar c04a14edd6 Merge branch 'master' into staging-next 2021-04-06 16:01:14 +02:00
R. RyanTM 6590636885 gobgp: 2.25.0 -> 2.26.0 2021-04-06 04:14:41 -04:00
zowoq 60d217b32a saldl: 40 -> 41
https://github.com/saldl/saldl/releases/tag/v41
2021-04-06 16:26:59 +10:00
R. RyanTM 11a2772e74 ytcc: 2.1.0 -> 2.2.0 2021-04-05 23:42:58 -04:00
Pacman99 2a87462479 linkchecker: add pyopenssl dependency to fix build 2021-04-05 11:38:06 -07:00
R. RyanTM 98a5158418
i2pd: 2.36.0 -> 2.37.0 2021-04-05 10:18:45 +02:00
Sandro 7c932296e0
Merge pull request #116335 from SuperSandro2000/move-aliases.nix 2021-04-05 04:07:15 +02:00
Sandro Jäckel 3453b89f4b
lzma: deprecate alias 2021-04-04 19:49:52 +02:00
Sandro Jäckel 33a395f195
yacc: deprecate alias
and add a new line after the alphabetically sorting to please my inner monk
2021-04-04 03:18:58 +02:00
Sandro Jäckel 62733b37b4
mysql: deprecate alias 2021-04-04 03:18:57 +02:00
Sandro Jäckel dcb501f993
kerberos: deprecate alias 2021-04-04 03:18:56 +02:00
github-actions[bot] 1ffe4a4f49
Merge staging-next into staging 2021-04-04 00:20:48 +00:00
github-actions[bot] 3cc7116425
Merge master into staging-next 2021-04-04 00:20:45 +00:00
Sandro Jäckel 9378fdf87e
iproute: deprecate alias 2021-04-04 01:43:46 +02:00
Serval 9531c4adef
v2ray: 4.36.2 -> 4.37.0 2021-04-04 02:51:57 +08:00
github-actions[bot] e4d0dd66a1
Merge staging-next into staging 2021-04-03 18:18:54 +00:00
github-actions[bot] 3bf92ca4db
Merge master into staging-next 2021-04-03 18:18:51 +00:00
Martin Weinelt 73e54be67d
Merge pull request #118343 from risicle/ris-curl-CVE-2021-22876-CVE-2021-22890
curl: add patches for CVE-2021-22876, CVE-2021-22890
2021-04-03 18:39:50 +02:00
Frederik Rietdijk fa9d5aa4aa httpstat: use python3 2021-04-03 17:06:09 +02:00
Frederik Rietdijk ba6f1213f0 libreswan: use python3 2021-04-03 17:06:09 +02:00
github-actions[bot] 74200a7126
Merge master into staging-next 2021-04-03 00:14:57 +00:00
Sandro a82f4038d3
Merge pull request #117544 from jraygauthier/jrg/swagger-codegen-update
swagger-codegen: 2.4.17 -> 2.4.19
2021-04-02 21:06:16 +02:00
Robert Scott 6808269554 curl: add patches for CVE-2021-22876, CVE-2021-22890
hand-backported from upstream fixes
2021-04-02 18:13:36 +01:00
github-actions[bot] b719e2423f
Merge staging-next into staging 2021-04-02 06:05:30 +00:00
Dmytro Shkyra 54c1e44240
dhcpcd: Fix patch url (#118264)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
2021-04-02 02:58:33 +02:00
github-actions[bot] 78b864aeee
Merge staging-next into staging 2021-04-01 18:15:42 +00:00
Mario Rodas d01a9229f8 mailutils: make nettools optional on darwin
Fixes https://github.com/NixOS/nixpkgs/issues/117583
2021-04-01 04:20:00 -05:00
github-actions[bot] ebc5b12a40
Merge staging-next into staging 2021-04-01 06:05:50 +00:00
Ryan Mulligan 0fd3f82f52
Merge pull request #118058 from r-ryantm/auto-update/gobgp
gobgp: 2.24.0 -> 2.25.0
2021-03-31 20:27:56 -07:00
github-actions[bot] b152812791
Merge staging-next into staging 2021-04-01 00:15:44 +00:00
Sandro d544fddd08
Merge pull request #118087 from kmein/feature/moodle-dl
moodle-dl: init at 2.1.2.5
2021-03-31 22:43:10 +02:00
rnhmjoj 61b7cab481
treewide: use perl.withPackages when possible
Since 03eaa48 added perl.withPackages, there is a canonical way to
create a perl interpreter from a list of libraries, for use in script
shebangs or generic build inputs. This method is declarative (what we
are doing is clear), produces short shebangs[1] and needs not to wrap
existing scripts.

Unfortunately there are a few exceptions that I've found:

  1. Scripts that are calling perl with the -T switch. This makes perl
  ignore PERL5LIB, which is what perl.withPackages is using to inform
  the interpreter of the library paths.

  2. Perl packages that depends on libraries in their own path. This
  is not possible because perl.withPackages works at build time. The
  workaround is to add `-I $out/${perl.libPrefix}` to the shebang.

In all other cases I propose to switch to perl.withPackages.

[1]: https://lwn.net/Articles/779997/
2021-03-31 21:35:37 +02:00
github-actions[bot] 5abd5f5ab0
Merge staging-next into staging 2021-03-31 18:15:02 +00:00
Fabian Affolter 8cea65315a
Merge pull request #118080 from r-ryantm/auto-update/oneshot
oneshot: 1.3.1 -> 1.4.1
2021-03-31 15:45:11 +02:00
github-actions[bot] a2ada5b26f
Merge staging-next into staging 2021-03-31 06:05:45 +00:00
github-actions[bot] e880daefc6
Merge master into staging-next 2021-03-31 06:05:41 +00:00
Kierán Meinhardt 9a65c61b03 moodle-dl: init at 2.1.2.5 2021-03-31 07:37:35 +02:00
Mario Rodas 8632d1f5b1
Merge pull request #117832 from r-ryantm/auto-update/shadowsocks-rust
shadowsocks-rust: 1.9.2 -> 1.10.2
2021-03-30 20:56:26 -05:00
github-actions[bot] 01b3d1558f
Merge staging-next into staging 2021-03-30 18:15:09 +00:00
github-actions[bot] f555f95ed8
Merge master into staging-next 2021-03-30 18:15:05 +00:00
R. RyanTM 610652c1c8 oneshot: 1.3.1 -> 1.4.1 2021-03-30 15:50:53 +00:00
Vladimír Čunát 4b872b6efd
dnsperf: 2.5.0 -> 2.5.2
https://github.com/DNS-OARC/dnsperf/releases/tag/v2.5.1
https://github.com/DNS-OARC/dnsperf/releases/tag/v2.5.2
It seems to work OK in my testing.
2021-03-30 17:06:40 +02:00
R. RyanTM df740331cd gobgp: 2.24.0 -> 2.25.0 2021-03-30 12:24:57 +00:00
github-actions[bot] 884cf463fd
Merge staging-next into staging 2021-03-29 12:06:29 +00:00
github-actions[bot] b1788736fd
Merge master into staging-next 2021-03-29 12:06:25 +00:00
Sandro ae46abe7b1
Merge pull request #117893 from raboof/opensnitch-init-at-1.3.6
opensnitch: init at 1.3.6
2021-03-29 13:48:32 +02:00