Commit Graph

4604 Commits

Author SHA1 Message Date
Peder Bergebakken Sundt
462b96d2a1
Merge pull request #326243 from jcaesar/pr-13
treewide: skip generating shell completions using $out/bin/… when cross compiling
2024-08-06 08:15:56 +02:00
Nick Cao
c95467cd2c
Merge pull request #332518 from r-ryantm/auto-update/scraper
scraper: 0.19.1 -> 0.20.0
2024-08-05 16:29:55 -04:00
Damien Cassou
dd16b70b31
Merge pull request #332404 from r-ryantm/auto-update/crowdin-cli
crowdin-cli: 4.1.0 -> 4.1.1
2024-08-05 21:22:14 +02:00
R. Ryantm
85a8f2232e scraper: 0.19.1 -> 0.20.0 2024-08-05 16:15:33 +00:00
R. Ryantm
7bf99c2095 crowdin-cli: 4.1.0 -> 4.1.1 2024-08-05 05:34:39 +00:00
tomberek
233b788cf8
Merge pull request #331773 from r-ryantm/auto-update/d2
d2: 0.6.5 -> 0.6.6
2024-08-04 14:48:00 -04:00
tomberek
3cd10ccdb6
Merge pull request #330767 from r-ryantm/auto-update/opencc
opencc: 1.1.7 -> 1.1.8
2024-08-04 14:46:26 -04:00
Sandro
c933cf4698
Merge pull request #332031 from r-ryantm/auto-update/mdcat
mdcat: 2.1.2 -> 2.3.0
2024-08-04 17:28:10 +02:00
Julius Michaelis
6a9beaf893 treewide: skip generating shell completions using $out/bin/… when cross compiling
This focuses on Rust packages, since the most commonly used argument
parser library (clap/structopt) makes the following pattern natural and
thus common:

  postInstall = ''
    installShellCompletion --cmd foo \
      --bash <($out/bin/foo completion bash) \
      …

This commit just guards those with

lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform)

splitting the string where unrelated actions are performed.
2024-08-04 10:50:48 +09:00
R. Ryantm
6fe75e3b62
mdcat: 2.1.2 -> 2.3.0 2024-08-03 20:27:58 +02: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
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
R. Ryantm
7f3849b3be hcledit: 0.2.11 -> 0.2.13 2024-08-03 02:22:34 +00: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
R. Ryantm
8b8b6acc49 ugrep: 6.2.0 -> 6.3.0 2024-08-02 18:42:07 +00:00
Emily
8764d898c4
Merge pull request #330741 from emilazy/push-rlvumrtyxrmk
python3Packages.nose3: drop
2024-08-02 16:31:00 +01: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
R. Ryantm
2a3d5d1e9f d2: 0.6.5 -> 0.6.6 2024-08-02 13:03:16 +00:00
R. Ryantm
6ff7091e80 mark: 9.13.0 -> 10.0.0 2024-08-01 10:34:11 +00:00
Emily
22af46b512
grin: 1.3.0 -> 1.3.0-unstable-2023-08-30 2024-08-01 11:25:21 +09:00
Emily
eeb13b181f
grin: modernize 2024-08-01 11:25:19 +09:00
zimbatm
ebed8837b5 shab: move to by-name 2024-07-31 09:10:30 +02:00
zimbatm
06e0eef0f7 gist: move to by-name 2024-07-31 09:10:29 +02:00
Sigmanificient
aab1113d4a treewide: normalize maintainers list formatting
grep -rP 'maintainers = \[\];'
2024-07-30 16:26:22 +02:00
R. Ryantm
3a58ef5743 opencc: 1.1.7 -> 1.1.8 2024-07-29 04:20:51 +00:00
Jörg Thalheim
5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00
Sandro
1bd4d2fb42
Merge pull request #330641 from jaredmontoya/update-markdownlint-cli2 2024-07-29 00:37:13 +02:00
Jörg Thalheim
8968b1abb7
Merge pull request #330232 from atorres1985-contrib/remove-viric
Treewide: remove inactive maintainer viric
2024-07-28 17:15:00 +02:00
Anderson Torres
9a624d10e3 treewide: remove viric from meta.maintainers [orphans]
Since theey is not active from at least six years.

All the packages on this commit became orphans.

---------------------------------------------------------------------------
There are files not covered by this commit, because they will be adopted
soon. Namely:

- pkgs/by-name/zs/zsync/package.nix
- pkgs/games/bsdgames/default.nix
- pkgs/misc/ghostscript/default.nix
- pkgs/os-specific/linux/kernel/perf/default.nix
- pkgs/tools/system/logrotate/default.nix
2024-07-28 11:48:51 -03:00
Nick Cao
ad29e2c9c3
Merge pull request #330476 from r-ryantm/auto-update/hck
hck: 0.10.0 -> 0.10.1
2024-07-28 10:34:11 -04:00
jaredmontoya
04ec4905b2 markdownlint-cli2: set meta.mainProgram 2024-07-28 15:02:42 +02:00
K900
24076029d2 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-28 01:04:35 +03:00
R. Ryantm
9c771ec1ef hck: 0.10.0 -> 0.10.1 2024-07-27 17:57:25 +00:00
Nick Cao
7cb54abacf
Merge pull request #329792 from r-ryantm/auto-update/ov
ov: 0.35.0 -> 0.36.0
2024-07-27 10:14:47 -04:00
Martin Weinelt
93f4195fe0
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/applications/graphics/seamly2d/default.nix
2024-07-26 18:05:04 +02:00
Aleksana
a46b61fa68
Merge pull request #329562 from r-ryantm/auto-update/mdbook-i18n-helpers
mdbook-i18n-helpers: 0.3.4 -> 0.3.5
2024-07-26 23:52:00 +08:00
R. Ryantm
54d181e2e4 ov: 0.35.0 -> 0.36.0 2024-07-25 02:32:20 +00:00
github-actions[bot]
7208220b63
Merge master into staging-next 2024-07-24 18:01:18 +00:00
Ivan Trubach
90fbf71333 treewide: remove maintainer goibhniu
Inactive in Nixpkgs since 2018 (and a single PR in 2022).
https://github.com/NixOS/nixpkgs/issues?q=author%3Acillianderoiste
2024-07-24 13:38:22 +03:00
Vladimír Čunát
cd346565bb
Merge branch 'master' into staging-next 2024-07-24 07:19:19 +02:00
R. Ryantm
2dc9b3890d mdbook-i18n-helpers: 0.3.4 -> 0.3.5 2024-07-24 02:42:27 +00:00
R. Ryantm
695edc7ade crowdin-cli: 4.0.0 -> 4.1.0 2024-07-23 12:20:16 +00:00
github-actions[bot]
d284ef371e
Merge master into staging-next 2024-07-23 12:01:18 +00:00
Maximilian Bosch
aa2e0dffb2
Merge pull request #328814 from r-ryantm/auto-update/ugrep
ugrep: 6.0.0 -> 6.2.0
2024-07-23 11:39:55 +00:00
github-actions[bot]
09a27d5bc1
Merge master into staging-next 2024-07-23 00:02:18 +00:00
Nick Cao
12100837a8
Merge pull request #329044 from r-ryantm/auto-update/percollate
percollate: 4.2.1 -> 4.2.2
2024-07-22 17:26:14 -04:00
Nick Cao
29c2454840
Merge pull request #329071 from mfrw/mfrw/difftastic-0.59.0
difftastic: 0.58.0 -> 0.59.0
2024-07-22 16:53:38 -04:00
Artturin
60e9cffe2c Merge branch 'master' into staging-next 2024-07-22 22:53:31 +03:00
Muhammad Falak R Wani
9f1b685df9 difftastic: 0.58.0 -> 0.59.0
Diff: https://github.com/wilfred/difftastic/compare/0.58.0...0.59.0
Changelog: https://github.com/Wilfred/difftastic/blob/0.59.0/CHANGELOG.md
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
2024-07-22 09:51:29 +05:30