added hashes for emojis

This commit is contained in:
twoneis 2025-02-24 20:20:07 +01:00
parent f7a50f22e2
commit 3e715817fc
4 changed files with 7 additions and 3 deletions

View file

@ -9,7 +9,7 @@ stdenvNoCC.mkDerivation {
src = fetchurl { src = fetchurl {
url = "https://volpeon.ink/emojis/blobfox/blobfox.zip"; url = "https://volpeon.ink/emojis/blobfox/blobfox.zip";
hash = ""; hash = "sha256-mTLPzI5J8h9jLqVYfkY9wCO2our/sccK8wrsZgmr+ro=";
}; };
sourceRoot = "."; sourceRoot = ".";

View file

@ -3,6 +3,8 @@
inherit (config) conf; inherit (config) conf;
inherit ((pkgs.formats.elixirConf { }).lib) mkMap; inherit ((pkgs.formats.elixirConf { }).lib) mkMap;
neocat = (pkgs.callPackage ./neocat.nix { }); neocat = (pkgs.callPackage ./neocat.nix { });
neofox = (pkgs.callPackage ./neofox.nix { });
blobfox = (pkgs.callPackage ./blobfox.nix { });
in mkIf conf.fedi.enable { in mkIf conf.fedi.enable {
services.akkoma = { services.akkoma = {
enable = true; enable = true;
@ -102,6 +104,8 @@ in mkIf conf.fedi.enable {
}; };
extraStatic = { extraStatic = {
"emoji/neocat" = neocat; "emoji/neocat" = neocat;
"emoji/neofox" = neofox;
"emoji/blobfox" = blobfox;
}; };
nginx = { nginx = {
serverName = "fedi.twoneis.site"; serverName = "fedi.twoneis.site";

View file

@ -9,7 +9,7 @@ stdenvNoCC.mkDerivation {
src = fetchurl { src = fetchurl {
url = "https://volpeon.ink/emojis/neocat/neocat.zip"; url = "https://volpeon.ink/emojis/neocat/neocat.zip";
hash = ""; hash = "sha256-TLgD6uSBwVurIhvViAyOoVLnylmDq+H4obPKjCDbjoE=";
}; };
sourceRoot = "."; sourceRoot = ".";

View file

@ -9,7 +9,7 @@ stdenvNoCC.mkDerivation {
src = fetchurl { src = fetchurl {
url = "https://volpeon.ink/emojis/neofox/neofox.zip"; url = "https://volpeon.ink/emojis/neofox/neofox.zip";
hash = ""; hash = "sha256-aZl+wc7Up7/iPSoim8RXV0pmO+cyjfMIg/36ZADQN0k=";
}; };
sourceRoot = "."; sourceRoot = ".";