diff options
| author | Jelle Licht <jlicht@fsfe.org> | 2021-11-29 22:18:38 +0100 |
|---|---|---|
| committer | Jelle Licht <jlicht@fsfe.org> | 2021-11-29 22:19:47 +0100 |
| commit | 5ab62301f3205bcbf92cfc1250f55bfa7f54d705 (patch) | |
| tree | 8122749aba11c3793361281e74c36be40ad849f5 /pre-inst-env | |
| parent | 648477e5f8fa6c21cc201ad002888981b724c6d0 (diff) | |
[WIP] Add pre-inst-env.rework-structure
* pre-inst-env: New file.
Diffstat (limited to 'pre-inst-env')
| -rwxr-xr-x | pre-inst-env | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/pre-inst-env b/pre-inst-env new file mode 100755 index 0000000..7f86fc1 --- /dev/null +++ b/pre-inst-env | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | # GNU Guix --- Functional package management for GNU | ||
| 4 | # Copyright © 2012, 2013, 2014, 2015, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org> | ||
| 5 | # Copyright © 2017 Eric Bavier <bavier@cray.com> | ||
| 6 | # Copyright © 2021 Jelle Licht <jlicht@fsfe.org> | ||
| 7 | # | ||
| 8 | # This file is not part of GNU Guix. | ||
| 9 | # | ||
| 10 | # GNU Guix is free software; you can redistribute it and/or modify it | ||
| 11 | # under the terms of the GNU General Public License as published by | ||
| 12 | # the Free Software Foundation; either version 3 of the License, or (at | ||
| 13 | # your option) any later version. | ||
| 14 | # | ||
| 15 | # GNU Guix is distributed in the hope that it will be useful, but | ||
| 16 | # WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | # GNU General Public License for more details. | ||
| 19 | # | ||
| 20 | # You should have received a copy of the GNU General Public License | ||
| 21 | # along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. | ||
| 22 | |||
| 23 | # Usage: ./pre-inst-env COMMAND ARG... | ||
| 24 | # | ||
| 25 | # Run COMMAND in a pre-installation environment. Typical use is | ||
| 26 | # "./pre-inst-env guix build clojure-tools". | ||
| 27 | |||
| 28 | SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )" | ||
| 29 | |||
| 30 | # We can also modify GUIX_EXTENSIONS_PATH if we ever need to | ||
| 31 | |||
| 32 | GUIX_PACKAGE_PATH="$SCRIPTPATH/guix${GUIX_PACKAGE_PATH:+:}$GUIX_PACKAGE_PATH" | ||
| 33 | export GUIX_PACKAGE_PATH | ||
| 34 | |||
| 35 | exec "$@" \ No newline at end of file | ||
