Cleanup overlays, remove 22.11 todos

This commit is contained in:
Sandro - 2022-12-04 04:14:16 +01:00
parent 5d7005342e
commit f664a189fd
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 1 additions and 15 deletions

View File

@ -10,7 +10,7 @@ let
pkgs-unstable = nixos-unstable.legacyPackages.${prev.system};
in
with final; {
allcolors = with final; rustPlatform.buildRustPackage rec {
allcolors = rustPlatform.buildRustPackage rec {
pname = "allcolors";
version = "0.1.0";
src = fetchFromGitHub {
@ -41,10 +41,6 @@ with final; {
}) ];
};
# HACK: referenced by sdrweb
# TODO: remove with 22.11
alsaUtils = final.alsa-utils;
inherit (bevy-julia.packages.${system}) bevy_julia;
inherit (bevy-mandelbrot.packages.${system}) bevy_mandelbrot;
@ -131,16 +127,6 @@ with final; {
then throw "tracer-game: ${reason}"
else tracer.packages.${system}.tracer-game;
# HACK: referenced by hydra-module.nix but removed from nixos-unstable in 2022-09
# TODO: remove with 22.11
utillinux = final.util-linux;
# vector-0.23 + mqtt-sink
vector = pkgs-unstable.callPackage ./vector {};
wander =
if prev ? wander
then builtins.trace "`wander` is now available on stable NixOS. Please remove from overlay!"
prev.wander
else pkgs-unstable.wander;
}