mirror of
https://github.com/justinwoo/easy-dhall-nix.git
synced 2024-11-14 15:19:41 +01:00
8 lines
139 B
Bash
Executable file
8 lines
139 B
Bash
Executable file
#!/usr/bin/env sh
|
|
set -e
|
|
tmp="$(mktemp -d)"
|
|
trap "rm -r $tmp" EXIT
|
|
nix-build \
|
|
--out-link "$tmp"/result \
|
|
./test.nix
|
|
"$tmp/result"
|