Update from update-inputs-2024-11-08-04-20

This commit is contained in:
Update Bot 2024-11-08 04:20:14 +01:00
commit 4a6fcb6371
No known key found for this signature in database
4 changed files with 21 additions and 15 deletions

View file

@ -79,7 +79,7 @@
registration_reason_length = 2048; registration_reason_length = 2048;
account_approval_required = true; account_approval_required = true;
account_activation_required = true; account_activation_required = true;
federating = false; federating = true;
federation_incoming_replies_max_depth = 1024; federation_incoming_replies_max_depth = 1024;
federation_reachability_timeout_days = 14; federation_reachability_timeout_days = 14;
allow_relay = true; allow_relay = true;
@ -94,6 +94,7 @@
"solitary.social" "solitary.social"
"donotsta.re" "donotsta.re"
"chaos.social" "chaos.social"
"girldick.gay"
]; ];
}; };

View file

@ -156,11 +156,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1730751873, "lastModified": 1731026109,
"narHash": "sha256-sdY29RWz0S7VbaoTwSy6RummdHKf0wUTaBlqPxrtvmQ=", "narHash": "sha256-X1/F4qNzKuhnWwO32b774nPVLnNLnJILyT61zsjk3FA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "disko", "repo": "disko",
"rev": "856a2902156ba304efebd4c1096dbf7465569454", "rev": "f3f8254fccc321f4cac0d716f73203bfd5e02477",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -957,11 +957,11 @@
"treefmt-nix": "treefmt-nix_2" "treefmt-nix": "treefmt-nix_2"
}, },
"locked": { "locked": {
"lastModified": 1730877618, "lastModified": 1731009822,
"narHash": "sha256-HQTKujMb6SwnOqtWA+A7lR4MOCBZUW4vtrkK1E/QweU=", "narHash": "sha256-VwGfFYHjizs7yQwh8JRlDUVkHLPc34jdqkQ2vyv6ddY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nixvim", "repo": "nixvim",
"rev": "898246c943ba545a79d585093e97476ceb31f872", "rev": "aabbd60633947baba11db44df84f402edc241440",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -1038,11 +1038,11 @@
"nixpkgs-stable": "nixpkgs-stable_2" "nixpkgs-stable": "nixpkgs-stable_2"
}, },
"locked": { "locked": {
"lastModified": 1730883027, "lastModified": 1731008979,
"narHash": "sha256-pvXMOJIqRW0trsW+FzRMl6d5PbsM4rWfD5lcKCOrrwI=", "narHash": "sha256-yN1NxvmqV8UltLkqYBWTeZNgpD/eyh/7LM58caHiEfE=",
"owner": "Mic92", "owner": "Mic92",
"repo": "sops-nix", "repo": "sops-nix",
"rev": "c5ae1e214ff935f2d3593187a131becb289ea639", "rev": "fe63071416471abdab06caa234122932a7c4b980",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -1072,11 +1072,11 @@
"tinted-tmux": "tinted-tmux" "tinted-tmux": "tinted-tmux"
}, },
"locked": { "locked": {
"lastModified": 1730924223, "lastModified": 1731002033,
"narHash": "sha256-tGvmW0qih+dCAH9L4BEMYMiHcBoJVZtESbC9WH0EEuw=", "narHash": "sha256-uGjTjvvlGQfQ0yypVP+at0NizI2nrb6kz4wGAqzRGbY=",
"owner": "danth", "owner": "danth",
"repo": "stylix", "repo": "stylix",
"rev": "762c07ee10b381bc8e085be5b6c2ec43139f13b0", "rev": "f71c2effed1ce4f9fbeefe402e4e431428ffe93a",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -22,7 +22,12 @@ in {
postPatch = '' postPatch = ''
# Build scripts assume to be used within a Git repository checkout # Build scripts assume to be used within a Git repository checkout
substituteInPlace src/modules/instance.js \ substituteInPlace src/modules/instance.js \
--replace-fail "widenTimeline: true" 'widenTimeline: "50%"' --replace-fail "widenTimeline: true" 'widenTimeline: "50%"'
substituteInPlace src/modules/config.js \
--replace-fail "streaming: false" "streaming: true" \
--replace-fail "useStreamingApi: false" "useStreamingApi: true" \
--replace-fail "webPushNotifications: false" "webPushNotifications: true"
substituteInPlace src/i18n/en.json \ substituteInPlace src/i18n/en.json \
--replace-fail "meow" "florp" \ --replace-fail "meow" "florp" \

View file

@ -45,7 +45,7 @@ test_build () {
last_error="$(curl --fail -s -L -H "Accept: application/json" "${JOBSET_URL}" | jq -r ".errortime")" last_error="$(curl --fail -s -L -H "Accept: application/json" "${JOBSET_URL}" | jq -r ".errortime")"
[[ $last_error -gt $START_TIME ]] && [[ $last_error -gt $START_TIME ]] &&
echo "Evaluation error encountered at $(date +%Y-%m-%d-%H:%M:%S --date="${last_error}")" && echo "Evaluation error encountered at $(date +%Y-%m-%d-%H:%M:%S --date="@${last_error}")" &&
exit 1 exit 1
} }