9 lines
301 B
Bash
Executable File
9 lines
301 B
Bash
Executable File
#!/usr/bin/env bash
|
|
tar xvf nars.tar.gz
|
|
for i in $(echo nars/*.nar); do
|
|
echo "Importing $i"
|
|
nix-store --import < $i
|
|
done
|
|
echo "Starting nix build without substituters"
|
|
nix build --option substitute false github:obsidiansystems/nixbsd/openbsd-phase4#packages.x86_64-linux.openbsd-base.systemImage
|