timelimit: move env variable(s) into env for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-02-13 12:10:01 +01:00
parent 1c26a0af2e
commit 4ba846cc0f
+5 -2
View File
@@ -20,8 +20,11 @@ stdenv.mkDerivation (finalAttrs: {
doCheck = true;
installFlags = [ "PREFIX=$(out)" ];
INSTALL_PROGRAM = "install -m755";
INSTALL_DATA = "install -m644";
env = {
INSTALL_PROGRAM = "install -m755";
INSTALL_DATA = "install -m644";
};
meta = {
description = "Execute a command and terminates the spawned process after a given time with a given signal";