Unverified Commit 1294e05b authored by nixpkgs-ci[bot]'s avatar nixpkgs-ci[bot] Committed by GitHub
Browse files

Merge master into staging-nixos

parents 6a41e43a 708d2137
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -93,6 +93,9 @@ insert_final_newline = unset
[*.jule]
indent_style = tab

[jule.mod]
insert_final_newline = unset

# Keep this hint at the bottom:
# Please don't add entries for subfolders here.
# Create <subfolder>/.editorconfig instead.
+4 −0
Original line number Diff line number Diff line
@@ -193,6 +193,10 @@ cffc27daf06c77c0d76bc35d24b929cb9d68c3c9
# nixos/kanidm: inherit lib, nixfmt
8f18393d380079904d072007fb19dc64baef0a3a

# fetchgit, fetchurl, fetchzip:
# format after refactoring with lib.extendMkDerivation (#455994)
aeddd850c6d3485fc1af2edfb111e58141d18dc1

# fetchhg: format after refactoring with lib.extendMkDerivation and make overridable (#423539)
34a5b1eb23129f8fb62c677e3760903f6d43228f

+1 −0
Original line number Diff line number Diff line
@@ -29,5 +29,6 @@
              - .github/actions/*
              - .github/workflows/*
              - ci/**/*.*
              - maintainers/github-teams.json

# keep-sorted end
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ jobs:
          author: ${{ steps.user.outputs.git-string }}
          committer: ${{ steps.user.outputs.git-string }}
          commit-message: "maintainers/github-teams.json: Automated sync"
          branch: github-team-sync
          branch: pr/github-team-sync
          title: "maintainers/github-teams.json: Automated sync"
          body: |
            This is an automated PR to sync the GitHub teams with access to this repository to the `lib.teams` list.
+1 −1
Original line number Diff line number Diff line
@@ -235,7 +235,7 @@ runCommand "test.pdf" { nativeBuildInputs = [ latex_with_foiltex ]; } ''
The font cache for LuaLaTeX is written to `$HOME`.
Therefore, it is necessary to set `$HOME` to a writable path, e.g. [before using LuaLaTeX in nix derivations](https://github.com/NixOS/nixpkgs/issues/180639):
```nix
runCommandNoCC "lualatex-hello-world" { buildInputs = [ texliveFull ]; } ''
runCommand "lualatex-hello-world" { buildInputs = [ texliveFull ]; } ''
  mkdir $out
  echo '\documentclass{article} \begin{document} Hello world \end{document}' > main.tex
  env HOME=$(mktemp -d) lualatex  -interaction=nonstopmode -output-format=pdf -output-directory=$out ./main.tex
Loading