From b6a9c7e6a4194c85bdd0d4133879c0b63230167b Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 8 Oct 2021 15:49:05 +0200 Subject: [PATCH] nix: use 'inputsFrom' --- flake.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 7c2bc1c..1437d34 100644 --- a/flake.nix +++ b/flake.nix @@ -63,10 +63,8 @@ devShell = pkgs.mkShell { name = "matrix-notifier"; - buildInputs = with pkgs; [ - curl - jq - shellcheck + inputsFrom = with self.packages.${system}; [ + matrix-notifier ]; inherit (self.checks.${system}.pre-commit) shellHook;