nixos does not like PUA characters

This commit is contained in:
Charlotte 🦝 Delenk 2022-06-22 11:52:57 +01:00
parent fbab719057
commit e0224c9a33
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122
3 changed files with 10 additions and 2 deletions

1
.gitattributes vendored
View file

@ -100,3 +100,4 @@
2020-01-17-workerq-lottecookie.jxl filter=lfs diff=lfs merge=lfs -text
2021-10-29-butterskunk-lotte-scat-buffet.jxl filter=lfs diff=lfs merge=lfs -text
2022-06-13-󱦀󱦐󱥦󱤋󱤻󱤏󱦑-󱤌󱦖󱤻󱥦󱦓󱦀󱦐󱤫󱥅󱥭󱤋󱦑󱤧󱥬󱤏󱤂-󱥠.jxl filter=lfs diff=lfs merge=lfs -text
2022-06-13-sammythetanuki-ijo-musi-suwi-pi-kije-lote-li-toki-insa-ala-sitelen.jxl filter=lfs diff=lfs merge=lfs -text

View file

@ -115,7 +115,7 @@
./2022-04-20-cloverhare-mxbatty-me-train-maffsie-plush.jxl
./2022-05-02-anonfurryartist-giftart.jxl
./2022-05-05-sammythetanuki-lotteass.jxl
(./. + "/2022-06-13-󱦀󱦐󱥦󱤋󱤻󱤏󱦑-󱤌󱦖󱤻󱥦󱦓󱦀󱦐󱤫󱥅󱥭󱤋󱦑󱤧󱥬󱤏󱤂-󱥠.jxl")
./2022-06-13-sammythetanuki-ijo-musi-suwi-pi-kije-lote-li-toki-insa-ala-sitelen.jxl
./2022-06-13-sammythetanuki-lotteplushnothoughts.jxl
./2022-06-13-sammythetanuki-lotteplushnothoughts-text.jxl
./2022-06-21-sammythetanuki-lotteplushpride.jxl
@ -128,7 +128,14 @@
}) srcs);
pkgs-jxl = mapAttrs' (name: value: {
name = "${name}-jxl";
inherit value;
value = pkgs.stdenvNoCC.mkDerivation {
name = "${name}.jxl";
version = extract-version name;
meta.artist = extract-artist name;
src = pkgs.emptyDirectory;
buildPhase = "true";
installPhase = "cp ${value} out";
};
}) pkgs-base;
pkgs-png = mapAttrs' (name: value: {
name = "${name}-png";