mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
a41d989a1e
svn path=/nixpkgs/branches/stdenv-updates/; revision=32093
8 lines
321 B
Bash
Executable file
8 lines
321 B
Bash
Executable file
#! /bin/sh
|
|
|
|
if [[ -z "$VERBOSE" ]]; then
|
|
echo "You may set VERBOSE=1 to see debug output or to any other non-empty string to make this script completely silent"
|
|
fi
|
|
unset HOME NIXPKGS_CONFIG # Force empty config
|
|
nix-instantiate --strict --eval-only --xml --show-trace "$(dirname "$0")"/eval-release.nix 2>&1 > /dev/null
|