trying local src
This commit is contained in:
parent
c35aec21f0
commit
0efe8702c4
2 changed files with 6 additions and 18 deletions
|
@ -1,23 +1,11 @@
|
||||||
{
|
{
|
||||||
stdenvNoCC,
|
stdenvNoCC,
|
||||||
fetchurl,
|
}:
|
||||||
unzip,
|
stdenvNoCC.mkDerivation {
|
||||||
}: let
|
|
||||||
day = "13";
|
|
||||||
month = "12";
|
|
||||||
year = "2022";
|
|
||||||
in stdenvNoCC.mkDerivation rec {
|
|
||||||
pname = "blobhaj";
|
pname = "blobhaj";
|
||||||
version = "${month}-${day}-${year}";
|
version = "13.12.2022";
|
||||||
|
|
||||||
src = fetchurl {
|
src = ./blobhaj;
|
||||||
url = "https://heatherhorns.com/wp-content/uploads/${year}/${month}/Blobhaj-${version}.zip";
|
|
||||||
hash = "";
|
|
||||||
};
|
|
||||||
|
|
||||||
sourceRoot = ".";
|
|
||||||
|
|
||||||
nativeBuildInputs = [ unzip ];
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
|
|
|
@ -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";
|
||||||
|
|
Loading…
Add table
Reference in a new issue