diff --git a/overlay/default.nix b/overlay/default.nix index f54f855a..25a2afb6 100644 --- a/overlay/default.nix +++ b/overlay/default.nix @@ -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; }