added blobhaj flags

This commit is contained in:
twoneis 2025-02-24 20:57:37 +01:00
parent 1edd932f5c
commit e35f4398dc
25 changed files with 4 additions and 11 deletions

View file

@ -1,26 +1,19 @@
{ {
stdenvNoCC, stdenvNoCC,
fetchurl,
unzip,
}: }:
stdenvNoCC.mkDerivation { stdenvNoCC.mkDerivation {
pname = "blobhajFlags"; pname = "blobhajFlags";
version = "1.0"; version = "1.0";
src = fetchurl { src = ./blobhajFlags;
url = "https://heatherhorns.com/BlobhajFlags.zip";
hash = "";
};
sourceRoot = "."; sourceRoot = ".";
nativeBuildInputs = [ unzip ];
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
mkdir -p $out mkdir -p $out
cp 512w/*.png $out cp *.png $out
runHook postInstall runHook postInstall
''; '';

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View file

@ -6,7 +6,7 @@
neofox = (pkgs.callPackage ./neofox.nix { }); neofox = (pkgs.callPackage ./neofox.nix { });
blobfox = (pkgs.callPackage ./blobfox.nix { }); blobfox = (pkgs.callPackage ./blobfox.nix { });
blobhaj = (pkgs.callPackage ./blobhaj.nix { }); blobhaj = (pkgs.callPackage ./blobhaj.nix { });
# blobhajFlags = (pkgs.callPackage ./blobhajFlags.nix { }); blobhajFlags = (pkgs.callPackage ./blobhajFlags.nix { });
in mkIf conf.fedi.enable { in mkIf conf.fedi.enable {
services.akkoma = { services.akkoma = {
enable = true; enable = true;
@ -109,7 +109,7 @@ in mkIf conf.fedi.enable {
"emoji/neofox" = neofox; "emoji/neofox" = neofox;
"emoji/blobfox" = blobfox; "emoji/blobfox" = blobfox;
"emoji/blobhaj" = blobhaj; "emoji/blobhaj" = blobhaj;
# "emoji/blobhajFlags" = blobhajFlags; "emoji/blobhajFlags" = blobhajFlags;
}; };
nginx = { nginx = {
serverName = "fedi.twoneis.site"; serverName = "fedi.twoneis.site";