From cca448c8fe5816c506dbc3297e771a7bd7344b9d Mon Sep 17 00:00:00 2001 From: Millian Poquet <millian.poquet@irit.fr> Date: Sun, 13 Nov 2022 19:59:18 +0100 Subject: [PATCH] nix: fix simgrid build & integration test shell --- default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/default.nix b/default.nix index fa7de3d..75e049a 100644 --- a/default.nix +++ b/default.nix @@ -45,6 +45,7 @@ let self = rec { version = "local"; src = pkgs.lib.sourceByRegex ./simgrid-simulator [ "meson\.build" + "meson_options\.txt" "src" "src/.*\.cpp" "src/.*\.hpp" @@ -76,6 +77,13 @@ let self = rec { zeromq ]; }; + + integration_shell_cpp = pkgs.mkShell { + buildInputs = [ + simgrid-simulator + client-cpp + ]; + }; }; in self -- GitLab