aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
Commit message (Collapse)AuthorAge
* release: v2.3pacien2023-07-26
|
* flake: switch to current stable nix channelpacien2023-07-25
|
* viewer: use nodejs 16 -> 18 for build in flake and CIpacien2023-07-25
| | | | | Node v16 is reaching EOL in a few months. Build seems to work fine with the new LTS (v18).
* project: release v2.2pacien2023-02-17
|
* Revert "compiler: fix support for non-utf8 terminals"pacien2023-02-16
| | | | | | | | | | | | | The reverted changeset fixed some crash due to character encoding mismatch in terminal emulators. Doing so, it made it possible for the compiler to complete without reporting any error, while outputting wrongly encoded files. It's better to revert that changeset until all the encoding issue are solved consistently. This reverts commit 0fddc74a3f9add47841124b4d77b097f4646d14f.
* flake: update input for ghc 9.2pacien2022-12-01
|
* viewer/build: use poll-based live reload in sandboxpacien2022-11-19
| | | | Continuing to use a watch-based approach by default elsewhere.
* flake/sandbox: increase allocated resources for viewer buildpacien2022-11-19
|
* flake: update flaky-utils, use tools argumentpacien2022-11-15
|
* flake: avoid making a new pkgs instancepacien2022-11-13
|
* flake: update flaky-utils, use single pkgs instancepacien2022-11-13
|
* flake: add devshell and VM sandboxpacien2022-11-12
|
* compiler: fix support for non-utf8 terminalspacien2022-10-30
| | | | | | | | | | | | | | | | The compiler echoes the names of the files being processed. Those file names may contain UTF-8 characters. However, some consoles may not support those. This is notably the case of the Windows CMD or on Linux with the legacy C locale. This caused the following error: ldgallery: <stdout>: commitBuffer: invalid argument (invalid character) This patch adds automatic transliteration when a non-UTF8 terminal is detected, so that neither the compiler or the terminal crash due to UTF8 characters. GitHub: closes #341
* flake: add example as a packagepacien2022-10-26
| | | | | | | | | | | | This allows quickly testing compiling the example gallery with a given version of ldgallery. For example: ```sh nix build github:ldgallery/ldgallery?rev=commithash#example -o result python -m http.server --directory result ``` GitHub: closes #339
* project: set new version for release 2.1pacien2022-09-04
|
* flake: add useful commands to readmepacien2022-09-04
|
* project: add nix flakepacien2022-09-03
GitHub: related to #285