diff options
author | sterni <sternenseemann@systemli.org> | 2022-10-23T00·32+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-10-27T12·05+0000 |
commit | 4d5fdb781d9893e3dcd5ea030ad24e3fd52b06e7 (patch) | |
tree | fd0304983cec4e46ba4031311621620aa539b110 /users | |
parent | b2de59e47c5fa0bf83aedc2125ec18d43c8d4b0f (diff) |
chore(3p/sources): Bump channels & overlays r/5211
* //users/grfn/system/home/modules: The MultiMC saga continues with: > PolyMC has been removed from nixpkgs due to a hostile takeover > by a rogue maintainer. The rest of the maintainers have made a > fork which is packaged as 'prismlauncher'. * //third_party/overlays: Override tdlib to 1.8.7 while waiting for nixpkgs to catch up. * //users/tazjin/finito: Disable on CI temporarily as it has been broken by some change in nixpkgs, now failing to compile a dependency. Change-Id: Ide038a8d466bfdc19dc9016beb03ae4817939a2b Reviewed-on: https://cl.tvl.fyi/c/depot/+/7066 Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: grfn <grfn@gws.fyi> Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
Diffstat (limited to 'users')
-rw-r--r-- | users/grfn/system/home/modules/games.nix | 2 | ||||
-rw-r--r-- | users/tazjin/finito/default.nix | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/users/grfn/system/home/modules/games.nix b/users/grfn/system/home/modules/games.nix index 5272ac9330fc..873182663020 100644 --- a/users/grfn/system/home/modules/games.nix +++ b/users/grfn/system/home/modules/games.nix @@ -55,7 +55,7 @@ mkMerge [ (mkIf stdenv.isLinux { home.packages = [ df - polymc + prismlauncher ]; }) ] diff --git a/users/tazjin/finito/default.nix b/users/tazjin/finito/default.nix index e50ac32be452..9a39591eab1d 100644 --- a/users/tazjin/finito/default.nix +++ b/users/tazjin/finito/default.nix @@ -2,4 +2,8 @@ depot.third_party.naersk.buildPackage { src = ./.; + + # Got broken by a rustc update (?) + # https://buildkite.com/tvl/depot/builds/17910#01841493-dc42-44f8-b904-32bf3d835485 + meta.ci.skip = true; } |