Sigmanificient
512e8afdb9
treewide: remove unused occurence of stdenv (and other) arguments
...
format (will squash)
2024-07-14 04:32:56 +02:00
aleksana
cc0ca35c74
treewide: sha256 -> hash attribute for codeberg.org fetchers
2024-07-13 22:32:17 +08:00
aleksana
1a89942243
treewide: sha256 -> hash attribute for gitlab.com fetchers
2024-07-13 22:28:37 +08:00
Jalil David Salamé Messina
2caa06582c
mdbook: move to pkgs/by-name
2024-07-13 12:03:02 +02:00
Jalil David Salamé Messina
9894294f10
mdbook: format with nixfmt-rfc-style
2024-07-13 12:02:45 +02:00
Jalil David Salamé Messina
4fb38a9c2c
mdbook: remove arguments to callPackage
...
This allows us to easily move it to pkgs/by-name
2024-07-13 12:00:00 +02:00
Jalil David Salamé Messina
9be682083c
mdbook: 0.4.37 -> 0.4.40
...
[Changelog][1]
[1]: https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-0440
2024-07-13 10:01:48 +02:00
Vladimír Čunát
2c053848df
Merge branch 'master' into staging
2024-07-11 22:05:05 +02:00
OTABI Tomoya
1991bfd73d
markdownlint-cli2: 0.9.0 -> 0.13.0 ( #317966 )
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2024-07-11 16:28:40 +02:00
Martin Weinelt
176a56c40f
Merge remote-tracking branch 'origin/staging-next' into staging
...
Conflicts:
- pkgs/applications/misc/blender/default.nix
- pkgs/development/web/nodejs/nodejs.nix
2024-07-11 01:06:28 +02:00
Nick Cao
c01d606435
Merge pull request #325240 from r-ryantm/auto-update/fanficfare
...
fanficfare: 4.35.0 -> 4.36.0
2024-07-10 18:56:23 -04:00
Thiago Kenji Okada
c62ade3aed
Merge pull request #311811 from abathur/move_lore_overrides_to_passthru_staging
...
binlore: migrate override lore to package passthru
2024-07-09 22:02:23 +00:00
Nick Cao
ed7c2df981
Merge pull request #325737 from r-ryantm/auto-update/csview
...
csview: 1.3.2 -> 1.3.3
2024-07-09 16:37:30 -04:00
Nick Cao
c62a5c9a0b
Merge pull request #325765 from r-ryantm/auto-update/vale
...
vale: 3.6.0 -> 3.6.1
2024-07-09 16:34:30 -04:00
R. Ryantm
07a64aa2ac
vale: 3.6.0 -> 3.6.1
2024-07-09 07:10:25 +00:00
R. Ryantm
cfcf4a652a
csview: 1.3.2 -> 1.3.3
2024-07-09 04:25:55 +00:00
Weijia Wang
f180937aef
Merge pull request #325480 from SFrijters/ov-completions
...
ov: fix shell completions
2024-07-08 15:42:10 +02:00
Stefan Frijters
6ece1873f0
ov: only generate completions if executable can be run
...
This fixes cross builds.
2024-07-08 11:11:23 +02:00
Stefan Frijters
a0c8d18eb8
ov: fix shell completions
2024-07-08 11:10:01 +02:00
Vladimír Čunát
4c09ae2416
Merge branch 'staging-next' into staging
2024-07-08 10:43:15 +02:00
R. Ryantm
1027ee5824
fanficfare: 4.35.0 -> 4.36.0
2024-07-07 11:46:11 +00:00
R. Ryantm
41f513b39e
poedit: 3.4.2 -> 3.4.4
2024-07-06 11:51:57 +00:00
Martin Weinelt
e7b1ee45cf
Merge remote-tracking branch 'origin/staging-next' into staging
...
Conflicts:
- pkgs/tools/misc/watchlog/default.nix
2024-07-06 01:52:35 +02:00
github-actions[bot]
36cbae9ff0
Merge master into staging-next
2024-07-04 18:01:19 +00:00
Nick Cao
eec8ab29d9
Merge pull request #324196 from r-ryantm/auto-update/jotdown
...
jotdown: 0.4.0 -> 0.4.1
2024-07-04 13:39:17 -04:00
Travis A. Everett
8f413d8a44
binlore: migrate override lore to package passthru
...
Lore overrides have been included with binlore's source up to now, but
this hasn't worked very well. (It isn't as easy to self-service for
people working in nixpkgs, and its use of partial pnames for matching
breaks down around some edge cases like version numbers appearing
early in perl pnames, or multiple packages having identical pnames.)
2024-07-04 11:15:05 -05:00
github-actions[bot]
e14242d985
Merge staging-next into staging
2024-07-04 12:01:37 +00:00
github-actions[bot]
9cede82051
Merge master into staging-next
2024-07-04 12:01:10 +00:00
Peder Bergebakken Sundt
7f29cc7704
Merge pull request #317052 from sudoforge/master
...
mark: 9.1.4 -> 9.12.0
2024-07-04 13:22:30 +02:00
Jalil David Salamé Messina
686c27bf09
mdbook: remove rec and with
...
`rec` and `with` are not recommended as they can produce hard to debug
errors.
2024-07-04 11:23:56 +02:00
aleksana
1862813d11
treewide: convert cargoSha256 to cargoHash
...
This is done with the following bash script:
```
#!/usr/bin/env bash
process_line() {
local filename=${1%:}
if [[ $4 =~ \"(.*)\"\; ]]; then
local sha256="${BASH_REMATCH[1]}"
fi
[[ -z $sha256 ]] && return 0
local hash=$(nix hash to-sri --type sha256 $sha256)
echo "Processing: $filename"
echo " $sha256 => $hash"
sed -i "s|cargoSha256 = \"$sha256\"|cargoHash = \"$hash\"|"
$filename
}
# split output by line
grep -r 'cargoSha256 = ' . | while IFS= read -r line; do
# split them further by space
read -r -a parts <<< "$line"
process_line "${parts[@]}"
done
```
2024-07-03 21:54:10 +08:00
aleksana
a9709c299b
treewide: change cargoSha256 with SRI hash to cargoHash
2024-07-03 21:53:11 +08:00
R. Ryantm
bd8ea8febe
jotdown: 0.4.0 -> 0.4.1
2024-07-03 02:06:03 +00:00
Weijia Wang
f5a7e092f3
Merge branch 'master' into staging-next
2024-07-02 22:22:02 +02:00
R. Ryantm
9864b028c0
sad: 0.4.30 -> 0.4.31
2024-07-02 09:30:22 +00:00
Martin Weinelt
9b79a05ae1
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
- pkgs/development/python-modules/flexcache/default.nix
- pkgs/development/python-modules/flexparser/default.nix
- pkgs/development/python-modules/odp-amsterdam/default.nix
- pkgs/development/python-modules/pint/default.nix
- pkgs/development/python-modules/uncertainties/default.nix
- pkgs/top-level/python-packages.nix
2024-07-01 01:07:21 +02:00
sudoforge
7ed7025007
mark: 9.1.4 -> 9.12.0
2024-06-29 08:14:26 -07:00
R. Ryantm
02218b6b0c
kdiff3: 1.11.1 -> 1.11.2
2024-06-29 12:55:31 +00:00
github-actions[bot]
f018e44bd1
Merge master into staging-next
2024-06-29 12:01:32 +00:00
Jonas Heinrich
ea9e416ca0
Merge pull request #323212 from marcusramberg/marcus/up_topfew
...
topfew: 0.9.0 -> 2.0.0
2024-06-29 12:42:26 +02:00
éclairevoyant
71e728d3b8
maintainers: remove ivar
2024-06-29 03:09:10 -04:00
Marcus Ramberg
b8b519c2cf
topfew: 0.9.0 -> 2.0.0
2024-06-28 20:11:36 +02:00
github-actions[bot]
2f3bfad6d2
Merge master into staging-next
2024-06-28 00:02:11 +00:00
Weijia Wang
948300941d
Merge pull request #318427 from r-ryantm/auto-update/basex
...
basex: 10.7 -> 11.0
2024-06-28 01:48:47 +02:00
Weijia Wang
6e55cfd3e3
Merge pull request #322796 from r-ryantm/auto-update/ov
...
ov: 0.34.1 -> 0.35.0
2024-06-27 23:10:14 +02:00
Weijia Wang
fa63ea42ab
Merge pull request #321453 from imincik/reveal-md-6.1.2
...
reveal-md: 5.5.2 -> 6.1.2
2024-06-27 22:45:47 +02:00
Martin Weinelt
d50a1e97b1
Merge remote-tracking branch 'origin/master' into staging-next
2024-06-27 16:16:01 +02:00
R. Ryantm
410f956f11
ov: 0.34.1 -> 0.35.0
2024-06-27 01:46:07 +00:00
R. Ryantm
6b3550d252
sad: 0.4.29 -> 0.4.30
2024-06-26 19:11:54 +00:00
github-actions[bot]
27074b7d07
Merge master into staging-next
2024-06-26 00:02:13 +00:00
R. Ryantm
c2e35b961f
epub2txt2: 2.07 -> 2.08
2024-06-25 11:38:27 +00:00
Martin Weinelt
2096642430
Merge remote-tracking branch 'origin/staging-next' into staging
...
Conflicts:
- pkgs/os-specific/windows/mingw-w64/default.nix
2024-06-23 19:09:00 +02:00
R. Ryantm
c712bc2c3d
mawk: 1.3.4-20240123 -> 1.3.4-20240622
2024-06-23 06:41:43 +00:00
P.
7e1ff7bd73
treewide: remove wolfangaukang as maintainer
2024-06-22 07:03:16 -06:00
github-actions[bot]
c6707a9686
Merge staging-next into staging
2024-06-21 12:01:53 +00:00
Ivan Mincik
96d8a58f7b
reveal-md: 5.5.2 -> 6.1.2
2024-06-21 08:35:23 +02:00
R. Ryantm
f11771fb39
mdbook-admonish: 1.17.1 -> 1.18.0
2024-06-20 16:09:51 +00:00
Martin Weinelt
af4cfc1e0f
Merge remote-tracking branch 'origin/staging-next' into staging
2024-06-19 23:28:26 +02:00
Nick Cao
0e3f81f0cd
Merge pull request #321000 from r-ryantm/auto-update/vale
...
vale: 3.5.0 -> 3.6.0
2024-06-19 10:43:24 -04:00
Nick Cao
b94cba3550
Merge pull request #320785 from r-ryantm/auto-update/epub2txt2
...
epub2txt2: 2.06 -> 2.07
2024-06-19 10:25:03 -04:00
R. Ryantm
d5bf9a656a
vale: 3.5.0 -> 3.6.0
2024-06-19 11:12:27 +00:00
Martin Weinelt
f822b2ba5c
Merge remote-tracking branch 'origin/staging-next' into staging
...
Conflicts:
- pkgs/development/python-modules/langsmith/default.nix
- pkgs/development/python-modules/rich-pixels/default.nix
- pkgs/servers/teleport/generic.nix
2024-06-18 20:16:19 +02:00
R. Ryantm
f0bab4cd16
epub2txt2: 2.06 -> 2.07
2024-06-18 13:32:44 +00:00
R. Ryantm
4a7043fd6c
mdbook-graphviz: 0.1.7 -> 0.2.0
2024-06-16 23:54:17 +00:00
github-actions[bot]
eccfb1ee94
Merge staging-next into staging
2024-06-15 00:02:47 +00:00
R. Ryantm
d4b529b19b
mdbook-i18n-helpers: 0.3.3 -> 0.3.4
2024-06-14 13:53:47 +00:00
Martin Weinelt
abdf5dc772
treewide: remove pythonRelaxDepsHook references
...
It is is now provided automatically, when `pythonRelaxDeps` or
`pythonRemoveDeps` is defined through `mk-python-derivation`.
2024-06-14 14:52:00 +02:00
github-actions[bot]
fddadbd234
Merge master into staging-next
2024-06-12 12:01:10 +00:00
R. Ryantm
58f15f1373
mdbook-admonish: 1.17.0 -> 1.17.1
2024-06-12 01:57:25 +00:00
github-actions[bot]
477d2d32ff
Merge master into staging-next
2024-06-12 00:02:10 +00:00
Nelson Elhage
93908113cb
xidel: Set platforms to platforms.all
...
The Linux-only `platforms` setting dates to 10 years ago in 7f06428544
, where it was accompanied by the comment
> `# more platforms will be supported when we switch to source build`
That switch happened in 2021 in d14ea1499b
. I've confirmed that the current package builds just fine on my `aarch64-darwin` laptop.
2024-06-11 23:49:33 +02:00
github-actions[bot]
79bbeb1aaf
Merge master into staging-next
2024-06-11 00:02:06 +00:00
Weijia Wang
ffa3e11c76
Merge pull request #317390 from wegank/validator-nu
...
validator-nu: set meta.platforms
2024-06-10 20:09:22 +02:00
github-actions[bot]
0cc78468fa
Merge master into staging-next
2024-06-10 18:01:13 +00:00
Weijia Wang
6967d1c21f
Merge pull request #318640 from r-ryantm/auto-update/fanficfare
...
fanficfare: 4.34.0 -> 4.35.0
2024-06-10 16:55:23 +02:00
github-actions[bot]
da065a023e
Merge master into staging-next
2024-06-10 06:01:12 +00:00
Paul Meyer
5c8e25b3f6
Merge pull request #318660 from r-ryantm/auto-update/valeStyles.write-good
...
valeStyles.write-good: 0.4.0 -> 0.4.1
2024-06-10 07:16:25 +02:00
Paul Meyer
775ffef732
Merge pull request #318661 from r-ryantm/auto-update/valeStyles.alex
...
valeStyles.alex: 0.2.1 -> 0.2.2
2024-06-10 07:15:49 +02:00
R. Ryantm
465025e576
valeStyles.proselint: 0.3.3 -> 0.3.4
2024-06-10 00:57:35 +00:00
R. Ryantm
ead4532ef0
valeStyles.alex: 0.2.1 -> 0.2.2
2024-06-10 00:54:26 +00:00
R. Ryantm
0b8b3b1ccf
valeStyles.write-good: 0.4.0 -> 0.4.1
2024-06-10 00:54:00 +00:00
R. Ryantm
3633836f48
fanficfare: 4.34.0 -> 4.35.0
2024-06-09 22:33:55 +00:00
Alyssa Ross
3df6bb2c85
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
pkgs/applications/blockchains/polkadot/default.nix
2024-06-09 22:47:12 +01:00
Alexis Hildebrandt
f8c4a98e8e
treewide: Remove the definite article from meta.description
...
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
| xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00
Alexis Hildebrandt
755b915a15
treewide: Remove indefinite article from meta.description
...
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
| xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
github-actions[bot]
5aea0ef461
Merge master into staging-next
2024-06-09 18:00:55 +00:00
R. Ryantm
f5870f15f3
basex: 10.7 -> 11.0
2024-06-09 04:49:56 +00:00
R. Ryantm
2479fafff6
vale: 3.4.2 -> 3.5.0
2024-06-09 04:19:36 +00:00
github-actions[bot]
e807ccccb1
Merge master into staging-next
2024-06-08 18:01:00 +00:00
R. Ryantm
86f6bb82c4
rare-regex: 0.3.3 -> 0.3.4
2024-06-08 02:41:28 +00:00
github-actions[bot]
4ace29447c
Merge master into staging-next
2024-06-07 00:02:15 +00:00
jopejoe1
cc84ae2302
ascii: 3.20 -> 3.30
2024-06-06 21:23:40 +02:00
jopejoe1
64b9766dba
ascii: refactor
2024-06-06 21:23:40 +02:00
Weijia Wang
91bc5060f7
validator-nu: set meta.platforms
2024-06-05 10:52:58 +02:00
github-actions[bot]
4b2a80fbd0
Merge master into staging-next
2024-06-05 00:02:31 +00:00
Peder Bergebakken Sundt
1986e87530
Merge pull request #316003 from WWeapn/fanficfare-4.34.0
...
fanficfare: 4.33.0 -> 4.34.0
2024-06-05 01:59:04 +02:00
Weijia Wang
5f6578b809
Merge pull request #314490 from r-ryantm/auto-update/highlight
...
highlight: 4.11 -> 4.12
2024-06-04 23:03:23 +02:00
Alyssa Ross
f27b3096c3
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
pkgs/os-specific/linux/util-linux/default.nix
2024-06-04 13:31:26 +01:00
Sigmanificient
d48a9bb622
treewide: remove unused fetchpatch arguments
2024-06-04 12:40:25 +02:00
github-actions[bot]
c5a290d7d7
Merge master into staging-next
2024-06-04 00:02:20 +00:00