diff --git a/default.nix b/default.nix index e495a5c..03dd0b3 100644 --- a/default.nix +++ b/default.nix @@ -1,7 +1,8 @@ let - mozillaOverlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz); + mozillaOverlay = import ; + pkgs = import { overlays = [ mozillaOverlay ]; }; in -with import { overlays = [ mozillaOverlay ]; }; +with pkgs; let rustPlatform = recurseIntoAttrs (callPackage (import ./nix/rustPlatform.nix) {}); adc2tcp = callPackage (import ./nix/adc2tcp.nix) { inherit rustPlatform; };