Compare commits

..

No commits in common. "acdb0851e76637ba4a62fbc57713af8ee9cee6ad" and "1e031e2cbe02c5de4d89dbac7bb8aac0a0503d40" have entirely different histories.

2 changed files with 15 additions and 12 deletions

View file

@ -23,20 +23,20 @@ let
meta.license = lib.licenses.unfree; meta.license = lib.licenses.unfree;
}; };
in in
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage rec {
pname = "goose-cli"; pname = "goose-cli";
version = "1.0.17-2"; version = "1.0.17";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "block"; owner = "block";
repo = "goose"; repo = "goose";
#tag = "v${version}"; tag = "v${version}";
rev = "167ac0efdc372ddbc80273c44d8497eafe0a901e"; #rev = "e7ad230957053dac7643701a69439ac19d5d2bf6";
hash = "sha256-dWvqanbNvC4IX6ZRdTZhB0+T9vGNVxAEBj8DtPfN/VE="; hash = "sha256-l/lcwTNUq2xJHh0MKhnDZjRJ/5cANbdar/Vusf38esQ=";
}; };
useFetchCargoVendor = true; useFetchCargoVendor = true;
cargoHash = "sha256-53W6gpt5eLw/WHMdEEWD4GmriHk2cAsNRzHv7niAb/0="; cargoHash = "sha256-1xKWzgptnM1ZP0nQXILBoaKVwL2FyXpldTUIa1ITQO0=";
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
@ -59,10 +59,11 @@ rustPlatform.buildRustPackage {
# need dbus-daemon # need dbus-daemon
"--skip=config::base::tests::test_multiple_secrets" "--skip=config::base::tests::test_multiple_secrets"
"--skip=config::base::tests::test_secret_management" "--skip=config::base::tests::test_secret_management"
"--skip=logging::tests::test_log_file_name::with_session_name_and_error_capture"
# Observer should be Some with both init project keys set # Observer should be Some with both init project keys set
"--skip=tracing::langfuse_layer::tests::test_create_langfuse_observer" "--skip=tracing::langfuse_layer::tests::test_create_langfuse_observer"
"--skip=providers::gcpauth::tests::test_token_refresh_race_condition" "--skip=providers::gcpauth::tests::test_token_refresh_race_condition"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# Lazy instance has previously been poisoned # Lazy instance has previously been poisoned
"--skip=jetbrains::tests::test_capabilities" "--skip=jetbrains::tests::test_capabilities"
"--skip=jetbrains::tests::test_router_creation" "--skip=jetbrains::tests::test_router_creation"

View file

@ -1,11 +1,12 @@
{ pkgs {
, lib pkgs,
, config lib,
, ... config,
...
}: }:
{ {
sops.secrets."coturn/static-auth-secret" = { sops.secrets."coturn/static-auth-secret" = {
sopsFile = ../../../.secrets/hetzner/coturn.yaml; sopsFile = ../../../.secrets/hetzner/coturn.yaml; # bring your own password file
restartUnits = [ "coturn.service" ]; restartUnits = [ "coturn.service" ];
owner = "turnserver"; owner = "turnserver";
}; };
@ -35,6 +36,7 @@
# get a certificate # get a certificate
security.acme.certs.${config.services.coturn.realm} = { security.acme.certs.${config.services.coturn.realm} = {
# insert here the right configuration to obtain a certificate
postRun = "systemctl restart coturn.service"; postRun = "systemctl restart coturn.service";
group = "turnserver"; group = "turnserver";
}; };