From aac678b2288a85f99363a7a3946e7dcad2dab982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 4 Apr 2025 17:25:51 +0200 Subject: [PATCH] don't use indirect nixpkgs references Those are deprecated in Nix: https://github.com/NixOS/nix/pull/12068 --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index a3de4350..8f6f0773 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,8 @@ { description = "Build Rust projects with ease. No configuration, no code generation; IFD and sandbox friendly."; + inputs.nixpkgs.url = "github:NixOS/nixpkgs?ref=nixpkgs-unstable"; + outputs = { self, nixpkgs }: let forAllSystems = nixpkgs.lib.genAttrs [ "x86_64-linux" "x86_64-darwin" "i686-linux" "aarch64-linux" "aarch64-darwin" ];