From 179a7c07ff795b307ab21c75d7dd72b7910b74b9 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Tue, 22 Aug 2023 08:58:41 +0200 Subject: [PATCH] Deploy-rs: switch to nixpkgs release --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index f6014d0..e6a87d2 100644 --- a/flake.nix +++ b/flake.nix @@ -58,7 +58,10 @@ }; devShells.default = pkgs.mkShell { - buildInputs = [ deploy-rs.packages.${system}.deploy-rs ]; + buildInputs = [ + # deploy-rs.packages.${system}.deploy-rs + pkgs.deploy-rs + ]; shellHook = '' ${self.checks.${system}.pre-commit-check.shellHook} '';