mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
10f864c5ae
This is good for shebang, and also good for future build system simplifications
9 lines
221 B
Bash
Executable file
9 lines
221 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source common.sh
|
|
|
|
if [[ $(uname -ms) = "Linux x86_64" ]]; then
|
|
# x86_64 CPUs must always support the baseline
|
|
# microarchitecture level.
|
|
nix -vv --version | grepQuiet "x86_64-v1-linux"
|
|
fi
|