Don't use rec in flake.nix

This commit is contained in:
Elnu 2023-08-10 13:15:58 -07:00
parent 1f4a8a2181
commit 13a048b185

View file

@ -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 // {