mirror of
https://github.com/ilyakooo0/nixpkgs-stackage.git
synced 2024-11-24 07:47:10 +03:00
11 lines
204 B
Bash
Executable File
11 lines
204 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Usage:
|
|
# nix-build-release.sh -A lts-100.x86_64-linux --dry-run
|
|
|
|
set -x
|
|
NIXPKGS_ALLOW_BROKEN=1 exec nix-build release.nix \
|
|
--option use-binary-caches false \
|
|
--arg inHydra false \
|
|
$@
|