From 02fde603c09e2286945beb8e7fef668e0e7ddd69 Mon Sep 17 00:00:00 2001 From: Hans-Joerg Schurr Date: Sun, 29 Mar 2020 19:40:07 +0200 Subject: [PATCH] Add valgrind to nix-shell --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index c90baa1..cad675b 100644 --- a/shell.nix +++ b/shell.nix @@ -15,6 +15,6 @@ pkgs.stdenv.mkDerivation { name = "hvif-light"; hardeningDisable = [ "all" ]; - buildInputs = with pkgs; [ autoconf automake gcc clang-tools gdb ]; + buildInputs = with pkgs; [ autoconf automake gcc clang-tools gdb valgrind-light ]; }