From 13a048b185e39985032ef7c1ba1e2da708c06af1 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Thu, 10 Aug 2023 13:15:58 -0700 Subject: [PATCH] Don't use rec in flake.nix --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 1a75e50..112a599 100644 --- a/flake.nix +++ b/flake.nix @@ -19,10 +19,10 @@ buildInputs = [ openssl ]; cargoHash = nixpkgs.lib.fakeHash; }; - in rec { + in { devShells.${system}.default = with pkgs; mkShell { packages = [ bacon ]; - inputsFrom = with packages.${system}; [ tatoeba images ]; + inputsFrom = with self.packages.${system}; [ tatoeba images ]; }; packages.${system} = { tatoeba = pkgs.rustPlatform.buildRustPackage (rustSettings // {