about summary refs log tree commit diff
path: root/pkgs/build-support/build-sandbox/src/params.h
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2017-11-30 06:42:49 +0100
committeraszlig <aszlig@nix.build>2017-11-30 08:33:59 +0100
commit38d3fe573f4d0ad2115eaca71a0b8f67fd01a580 (patch)
treed09bf338919056089be3b59194fa7b647794b15b /pkgs/build-support/build-sandbox/src/params.h
parent28ac40c9d9e1c9afc63c19646f223b28b7ed3bc8 (diff)
build-sandbox: Move to top-level build-support
This is not only useful for packaging games, so let's make it available
from the vuizvui scope, so we can use it from other packages as well.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'pkgs/build-support/build-sandbox/src/params.h')
-rw-r--r--pkgs/build-support/build-sandbox/src/params.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/build-support/build-sandbox/src/params.h b/pkgs/build-support/build-sandbox/src/params.h
new file mode 100644
index 00000000..ecfa7295
--- /dev/null
+++ b/pkgs/build-support/build-sandbox/src/params.h
@@ -0,0 +1,10 @@
+#ifndef _PARAMS_H
+#define _PARAMS_H
+
+#include <stdbool.h>
+#include "nix-query.h"
+
+bool setup_app_paths(void);
+bool mount_runtime_path_vars(struct query_state *qs);
+
+#endif