Merge pull request #262291 from chayleaf/akkoma-fix-captcha

akkoma: fix built-in captcha
This commit is contained in:
Weijia Wang 2023-10-24 04:08:27 +02:00 committed by GitHub
commit 054cb3a724
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
{ lib
, beamPackages
, fetchFromGitea, fetchFromGitHub, fetchFromGitLab
, cmake, file, libxcrypt
, cmake, file
, writeText
, nixosTests
, ...
@ -48,6 +48,9 @@ beamPackages.mixRelease rec {
rev = "3bbfa8b5ea13accc1b1c40579a380d8e5cfd6ad2";
hash = "sha256-skZ0QwF46lUTfsgACMR0AR5ymY2F50BQy1AUBjWVdro=";
};
# the binary is not getting installed by default
postInstall = "mv priv/* $out/lib/erlang/lib/${name}-${version}/priv/";
};
concurrent_limiter = beamPackages.buildMix rec {
name = "concurrent_limiter";