From 3b6de728362bb9047d19ca418a9ecd48b7e5f534 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Fri, 7 Dec 2018 21:37:19 -0500 Subject: [PATCH] agda: use exec in agdaWrapper --- pkgs/build-support/agda/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/agda/default.nix b/pkgs/build-support/agda/default.nix index 356fd058cac4..16fe748c3e5c 100644 --- a/pkgs/build-support/agda/default.nix +++ b/pkgs/build-support/agda/default.nix @@ -78,7 +78,7 @@ let # Makes a wrapper available to the user. Very useful in # nix-shell where all dependencies are -i'd. agdaWrapper = writeShellScriptBin "agda" '' - ${self.agdaWithArgs} "$@" + exec ${self.agdaWithArgs} "$@" ''; in [agdaWrapper] ++ self.buildDepends; };