From 5412e14dba0292867fcf28c0073fc72d12312273 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 4 Oct 2023 13:44:03 +0200 Subject: [PATCH] Patch shebangs in ovni runners --- pkgs/ovni/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/ovni/default.nix b/pkgs/ovni/default.nix index d4ab78c..8d40aa4 100644 --- a/pkgs/ovni/default.nix +++ b/pkgs/ovni/default.nix @@ -38,6 +38,9 @@ in stdenv.mkDerivation rec { pname = "ovni"; inherit (source) src version; + postPatch = '' + patchShebangs --build test/ + ''; buildInputs = [ cmake mpi ]; cmakeBuildType = if (enableDebug) then "Debug" else "Release"; cmakeFlags = [ "-DOVNI_GIT_COMMIT=${src.shortRev}" ];