Commit Graph

1808 Commits

Author SHA1 Message Date
Doron Behar
788ccaa51d
Merge pull request #333143 from bryango/tectonic-rust-1.80-fix
tectonic-unwrapped, tectonic: fix build
2024-08-09 11:35:24 +00:00
Bryan Lai
b12a306304 tectonic-unwrapped, tectonic: fix build
Add patch bumping the `time` crate, fix build with rust 1.80.
2024-08-08 21:09:46 +08:00
Leon Schoorl
9036ede9dc texlive.bin: update src urls 2024-08-01 16:06:44 +02: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
github-actions[bot]
d284ef371e
Merge master into staging-next 2024-07-23 12:01:18 +00:00
Robert Schütz
17a5b1248c bibtex-tidy: 1.11.0 -> 1.13.0
Diff: https://github.com/FlamingTempura/bibtex-tidy/compare/v1.11.0...9658d907d990fd80d25ab37d9aee120451bf5d19

Changelog: 9658d907d9/CHANGELOG.md
2024-07-23 02:51:12 -07:00
Vladimír Čunát
caebc10ec4
Merge #327970: asciidoc: 10.2.0 -> 10.2.1
...into staging
2024-07-20 10:16:08 +02:00
Robert Schütz
07768c8c73 asciidoc: 10.2.0 -> 10.2.1
Diff: https://github.com/asciidoc-py/asciidoc-py/compare/10.2.0...10.2.1

Changelog: https://github.com/asciidoc-py/asciidoc-py/blob/10.2.1/CHANGELOG.adoc
2024-07-17 09:14:13 -07:00
Artturin
a516ea8c99 Merge branch 'staging-next' into staging 2024-07-16 19:07:48 +03:00
chayleaf
9b877fd5ab
pdftk: convert to gradle setup hook 2024-07-12 21:36:20 +07:00
Vladimír Čunát
4c09ae2416
Merge branch 'staging-next' into staging 2024-07-08 10:43:15 +02:00
Weijia Wang
13514d5faa texpresso: fix build on darwin 2024-07-07 22:29:24 +02:00
R. Ryantm
ed490bc06b texpresso: 0-unstable-2024-05-23 -> 0-unstable-2024-06-22 2024-07-07 22:22:49 +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
github-actions[bot]
08b5c3c46a
Merge master into staging-next 2024-06-25 18:01:20 +00:00
Martin Weinelt
873fd5afd5 dblatex: pin to python3.11 due to distutils usage 2024-06-24 12:18:28 +02:00
Vincenzo Mantova
7f1a82fdee texlive.withPackages: resolve dependencies by pname only
The change allow swapping one package with a different one by simply
passing the new package to `.withPackages`.
2024-06-23 10:48:18 +01:00
Vincenzo Mantova
82aa005d8e texlive.withPackages: process new packages before existing ones 2024-06-23 10:48:17 +01:00
Martin Weinelt
af4cfc1e0f Merge remote-tracking branch 'origin/staging-next' into staging 2024-06-19 23:28:26 +02:00
Marcus Ramberg
4db07aa7c3 marp-cli: 3.2.0 -> 3.4.0 2024-06-16 22:15:55 +02:00
Aleksana
ee9cf00e6d
Merge pull request #315240 from Cryolitia/ghost-font
ghostscript: add output `fonts`
2024-06-15 19:32:39 +08:00
github-actions[bot]
c8c2ff3b9b
Merge staging-next into staging 2024-06-10 00:02:49 +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
Alexis Hildebrandt
bf995e3641 treewide: Remove ending period from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
2024-06-09 23:04:51 +02:00
github-actions[bot]
5d3e4362c2
Merge staging-next into staging 2024-06-04 18:01:39 +00: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
Ivan Trubach
e57c669d9d texlivePackages: fix symlimk creation condition
Use -n to check that string is not empty, -z checks the opposite.
2024-06-03 02:39:38 +03:00
github-actions[bot]
97d15b22bf
Merge master into staging-next 2024-06-02 18:01:10 +00:00
Weijia Wang
60f1e5576f
Merge pull request #313046 from r-ryantm/auto-update/asciidoctorj
asciidoctorj: 2.5.12 -> 2.5.13
2024-06-02 18:04:06 +02:00
Dmitry Kalinkin
eec839171d
Merge pull request #311134 from xworld21/texlive-packages-true-multioutput
texlivePackages: use proper multioutput derivations
2024-05-30 14:18:02 -04:00
R. Ryantm
110d28defd texpresso: 0-unstable-2024-05-09 -> 0-unstable-2024-05-23 2024-05-28 03:56:30 +00:00
北雁 Cryolitia
93a9ca34fe
ghostscript: add output fonts 2024-05-28 11:50:34 +08:00
paparodeo
61e89d1002
tetex: fix darwin build
specify -std=gnu89 and -std=c++03 to fix the configure script and build.
the tarballs were last updated in 2006 and the package is no longer
maintain so use standards from the era.
2024-05-26 03:41:29 +00:00
Sigmanificient
a2353716f6 treewide: remove unused occurence of fetchurl argument 2024-05-20 05:20:23 +02:00
R. Ryantm
30fbff4c41 asciidoctorj: 2.5.12 -> 2.5.13 2024-05-20 03:10:48 +00:00
Vincenzo Mantova
f72f67152a
texlive: set allowSubstitutes, preferLocalBuild values (#312049) 2024-05-19 22:01:47 -04:00
R. Ryantm
776bc2b976 hayagriva: 0.5.2 -> 0.5.3 2024-05-16 13:13:16 +00:00
R. Ryantm
a6702e2503 pulldown-cmark: 0.10.3 -> 0.11.0 2024-05-16 01:40:43 +00:00
Vincenzo Mantova
017e73bdfb
texlive.withPackages: generate formats in separate derivations (#291396)
Generate TeX formats into separate derivations so that they can be
shared across different environments, considerably reducing build times.
2024-05-13 15:27:56 -04:00
Vincenzo Mantova
637c1c82bf texlivePackages: use proper multioutput derivations
TeX Live packages under `texlivePackages` are now left as simple
multioutput derivations (without changes done in `passthru`). This
should ensure that all outputs are copied in the binary caches.
2024-05-12 19:17:50 +01:00
R. Ryantm
6f26f25421 texpresso: 0-unstable-2024-04-30 -> 0-unstable-2024-05-09 2024-05-11 00:05:53 +00:00
R. RyanTM
82cd9ea484
texpresso: 0-unstable-2024-04-18 -> 0-unstable-2024-04-30 (#308746) 2024-05-08 13:33:09 +01:00
github-actions[bot]
ae736c738d
Merge master into staging-next 2024-05-03 12:01:32 +00:00
Jussi Kuokkanen
ce3f586775 pkgs/tools: remove licenses.gpl2 2024-05-02 21:06:26 +02:00
Vladimír Čunát
725f48a252
Merge branch 'master' into staging-next 2024-05-02 09:05:49 +02:00
Pol Dellaiera
6a72138d19
Merge pull request #307828 from philiptaron/issue-208242/texlive
texlive: avoid top-level `with` in helper script
2024-05-01 23:10:59 +02:00
K900
a9c7210d0b Merge branch 'master' into staging-next 2024-05-01 09:37:47 +03:00