Commit Graph

87476 Commits

Author SHA1 Message Date
Peder Bergebakken Sundt
ec91af6409
Merge pull request #314132 from newAM/cleanup-xtask-binaries
treewide: cleanup xtask binaries
2024-08-03 22:26:17 +02:00
Pol Dellaiera
2951ad8e0a
Merge pull request #331811 from mfrw/mfrw/arti-1.2.6
arti: 1.2.4 -> 1.2.6
2024-08-03 21:14:45 +02:00
Anselm Schüler
e1354a3538
maintainers: partially remove anselmschueler 2024-08-03 19:09:47 +02:00
Peder Bergebakken Sundt
ff4306ae98
Merge pull request #330653 from teatwig/cve-bin-tool
python312Packages.lib4sbom: 0.7.1 -> 0.7.2
2024-08-03 18:10:49 +02:00
Aleksana
4787eebee4
Merge pull request #331627 from max-privatevoid/pr-s3ql-5.2.1
s3ql: 5.1.3 -> 5.2.1
2024-08-03 23:16:41 +08:00
Nick Cao
021536ff84
Merge pull request #331458 from r-ryantm/auto-update/gcsfuse
gcsfuse: 2.3.2 -> 2.4.0
2024-08-03 10:57:21 -04:00
Nick Cao
e7ccc351aa
Merge pull request #331895 from r-ryantm/auto-update/pfetch-rs
pfetch-rs: 2.10.0 -> 2.11.0
2024-08-03 10:04:11 -04:00
Nick Cao
879f2d03d9
Merge pull request #331926 from r-ryantm/auto-update/telepresence2
telepresence2: 2.19.0 -> 2.19.1
2024-08-03 10:01:41 -04:00
Nick Cao
92c297c16b
Merge pull request #331890 from r-ryantm/auto-update/hcledit
hcledit: 0.2.11 -> 0.2.13
2024-08-03 09:56:59 -04:00
Nick Cao
0ee9421a82
Merge pull request #331830 from r-ryantm/auto-update/ugrep
ugrep: 6.2.0 -> 6.3.0
2024-08-03 09:55:50 -04:00
Fabian Affolter
3725cee487
Merge pull request #331925 from r-ryantm/auto-update/qovery-cli
qovery-cli: 0.97.0 -> 1.1.0
2024-08-03 13:40:54 +02:00
Fabian Affolter
0c53765af8
Merge pull request #331901 from r-ryantm/auto-update/httpx
httpx: 1.6.6 -> 1.6.7
2024-08-03 13:40:37 +02:00
Matthias Beyer
48945d9be6
Merge pull request #331777 from mfrw/mfrw/difftastic-0.60.0
difftastic: 0.59.0 -> 0.60.0
2024-08-03 10:17:19 +02:00
Matthias Beyer
3cf8230b31
Merge pull request #331846 from r-ryantm/auto-update/timetagger_cli
timetagger_cli: 23.8.3 -> 24.7.1
2024-08-03 10:17:06 +02:00
Masum Reza
56f5a5a972
Merge pull request #331826 from DontEatOreo/update-undmg
undmg: 1.1.0 -> 1.1.0-unstable-2024-08-02
2024-08-03 12:23:46 +05:30
R. Ryantm
90d02f0086 cloc: 2.00 -> 2.02 2024-08-03 07:49:07 +02:00
R. Ryantm
c19698cb74 telepresence2: 2.19.0 -> 2.19.1 2024-08-03 05:32:41 +00:00
R. Ryantm
da04e028fc qovery-cli: 0.97.0 -> 1.1.0 2024-08-03 05:29:27 +00:00
R. Ryantm
8bd2e0edf1 httpx: 1.6.6 -> 1.6.7 2024-08-03 03:08:25 +00:00
R. Ryantm
f4dbe80c4d pfetch-rs: 2.10.0 -> 2.11.0 2024-08-03 02:40:36 +00:00
R. Ryantm
7f3849b3be hcledit: 0.2.11 -> 0.2.13 2024-08-03 02:22:34 +00:00
rewine
fa768fbda9
Merge pull request #331856 from symphorien/update-nix-du-121
nix-du: 1.2.0 -> 1.2.1
2024-08-03 09:27:56 +08:00
Nick Cao
81d6cb6d11
Merge pull request #331853 from GaetanLepage/nbqa
nbqa: fix by adding distutils dependency
2024-08-02 21:13:57 -04:00
Emily Trau
f10aad89bd
Merge pull request #329272 from vringar/fix/ghidra-extensions
gradle: fix update-deps.sh to use Nix bash
2024-08-03 10:41:29 +10:00
adisbladis
e0816431a2 treewide: Pass self when overriding Python
Otherwise references to the Python interpreter inside the set are wrong, as demonstrated by:
``` nix
with import <nixpkgs> { };
let
  python' = python3.override {
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the _non_ overriden requests.

And the same with `self`:
```
with import <nixpkgs> { };
let
  python' = python3.override {
    self = python';
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the overriden requests.

This can manifest itself as file collisions when constructing environments or as subtly incorrect dependency graphs.
2024-08-03 12:18:56 +12:00
Cole Mickens
20b3191140
Merge pull request #331628 from emilazy/push-plukoopowzmx
wl-screenrec: 0.1.3 -> 0.1.4-unstable-2024-07-28
2024-08-02 14:53:28 -07:00
Gaetan Lepage
e58878b8a1 nbqa: fix by adding distutils test dependency 2024-08-02 23:31:13 +02:00
Guillaume Girol
4c445ed479 nix-du: 1.2.0 -> 1.2.1
Diff: https://github.com/symphorien/nix-du/compare/v1.2.0...v1.2.1
2024-08-02 23:06:19 +02:00
R. Ryantm
0c69b24df0 timetagger_cli: 23.8.3 -> 24.7.1 2024-08-02 20:18:36 +00:00
Nick Cao
3135dcd603
Merge pull request #331774 from r-ryantm/auto-update/coldsnap
coldsnap: 0.6.1 -> 0.6.2
2024-08-02 15:31:55 -04:00
Nick Cao
d72a3f7022
Merge pull request #331791 from r-ryantm/auto-update/gobgp
gobgp: 3.28.0 -> 3.29.0
2024-08-02 15:29:59 -04:00
Nick Cao
754ab77cae
Merge pull request #331665 from r-ryantm/auto-update/gotify-cli
gotify-cli: 2.2.4 -> 2.3.2
2024-08-02 15:14:15 -04:00
Nick Cao
5440e63806
Merge pull request #331666 from r-ryantm/auto-update/spire
spire: 1.10.0 -> 1.10.1
2024-08-02 15:13:38 -04:00
Martin Weinelt
eb442d9081
Merge pull request #331394 from mweinelt/esphome-2024.7.3
esphome: 2024.7.2 -> 2024.7.3
2024-08-02 20:50:16 +02:00
R. Ryantm
8b8b6acc49 ugrep: 6.2.0 -> 6.3.0 2024-08-02 18:42:07 +00:00
DontEatOreo
dcd8a19b7c
undmg: 1.1.0 -> 1.1.0-unstable-2024-08-02
Diff: https://github.com/matthewbauer/undmg/compare/v1.1.0...0d92602b694f810fa4b137d87c743f345b303a14
2024-08-02 20:56:07 +03:00
DontEatOreo
d7bf713fbe
undmg: refactor meta 2024-08-02 20:52:53 +03:00
DontEatOreo
53774f1026
undmg: format 2024-08-02 20:51:53 +03:00
Emily
d9b57ba729 wl-screenrec: 0.1.3 -> 0.1.4-unstable-2024-07-28
Includes support for FFmpeg 7. We can’t use
the release tag because of a Cargo build issue; see
<https://github.com/russelltg/wl-screenrec/issues/77>. Hopefully
there’ll be a new release tag soon.

Diff: <https://github.com/russelltg/wl-screenrec/compare/v0.1.3...b817accf1d4f2373cb6f466f760de35e5b8626bd>
2024-08-02 18:36:29 +01:00
Muhammad Falak R Wani
50962e2880 arti: 1.2.4 -> 1.2.6
Diff: https://gitlab.torproject.org/tpo/core/arti/-/compare/arti-v1.2.4...arti-v1.2.6
Changelog: https://gitlab.torproject.org/tpo/core/arti/-/blob/arti-v1.2.6/CHANGELOG.md
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
2024-08-02 21:49:37 +05:30
Emily
8764d898c4
Merge pull request #330741 from emilazy/push-rlvumrtyxrmk
python3Packages.nose3: drop
2024-08-02 16:31:00 +01:00
Aleksana
9295d8ef80
Merge pull request #330192 from philiptaron/kakoune-maintainer
kakoune: add philiptaron as maintainer to most kakoune-related things
2024-08-02 22:53:17 +08:00
R. Ryantm
7c908d40bb gobgp: 3.28.0 -> 3.29.0 2024-08-02 14:40:57 +00:00
tomberek
de4490e5eb
Merge pull request #315471 from LeSuisse/ntp-4.2.8p18
ntp: 4.2.8p17 -> 4.2.8p18
2024-08-02 10:12:37 -04:00
Muhammad Falak R Wani
126e6855f9 difftastic: 0.59.0 -> 0.60.0
Diff: https://github.com/wilfred/difftastic/compare/0.59.0...0.60.0
Changelog: https://github.com/Wilfred/difftastic/blob/0.60.0/CHANGELOG.md
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
2024-08-02 19:14:09 +05:30
Masum Reza
09509386c7
Merge pull request #330453 from r-ryantm/auto-update/hyprland-per-window-layout
hyprland-per-window-layout: 2.11 -> 2.12
2024-08-02 19:13:30 +05:30
R. Ryantm
300c7e6cc3 coldsnap: 0.6.1 -> 0.6.2 2024-08-02 13:05:03 +00:00
vringar
5c354f19ea ghidra: restore configurability to buildGhidraExtension
This is required as Ghidra plugins don't have a consistent
layout and have to be widely configurable
2024-08-02 13:11:01 +02:00
K900
41c4517239
Revert "pebble: 2.4.0 -> 2.6.0 and fix version info" 2024-08-02 12:07:39 +03:00
tomberek
63c3b5e06f
Merge pull request #329984 from OPNA2608/update/haguichi
haguichi: 1.4.6 -> 1.5.0
2024-08-02 02:09:51 -04:00