Fix source.nix override

default
dump_stack() 2024-01-17 12:38:43 +00:00
parent b4e8916534
commit b03760e970
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 5 additions and 5 deletions

View File

@ -10,10 +10,10 @@ let
version = mastodon-source.version;
yarnHash = mastodon-source.yarnHash;
src = pkgs.fetchFromGitHub {
owner = mastodon-source.src.owner;
repo = mastodon-source.src.repo;
rev = mastodon-source.src.rev;
hash = mastodon-source.src.outputHash;
owner = mastodon-source.owner;
repo = mastodon-source.repo;
rev = mastodon-source.rev;
hash = mastodon-source.outputHash;
};
patches = [
./patches/logo.patch
@ -32,7 +32,7 @@ let
./patches/simple-form.patch
./patches/not-so-scary-500.patch
] ++ mastodon-source.src.patches;
] ++ mastodon-source.patches;
postPatch = (import ./branding.nix { pkgs = pkgs; }).branding;
};
};