aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-29 13:38:11 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-29 13:38:11 -0400
commitdd0bdbda0df31222d2db0d952995b46932432448 (patch)
treedd1a1f1545fd664c1a6211480490993dd51ae084
parente5ae5ff6c04fa2ca4451fbbe156e54db888cacea (diff)
Partial fix for nix
-rwxr-xr-xinstall_dependencies.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install_dependencies.sh b/install_dependencies.sh
index 5b8dcee6..53412213 100755
--- a/install_dependencies.sh
+++ b/install_dependencies.sh
@@ -58,7 +58,7 @@ case "$PKG_MGR" in
brew) brew install bdw-gc libunistring binutils llvm patchelf gmp ;;
macports) $SUDO port install boehm-gc libunistring binutils patchelf gmp ;;
zypper) $SUDO zypper install gc-devel libunistring-devel binutils patchelf gmp-devel ;;
- nix) nix-env -iA nixpkgs.boehm-gc nixpkgs.libunistring nixpkgs.binutils nixpkgs.patchelf nixpkgs.gmp ;;
+ nix) nix-env -iA nixpkgs.boehmgc.dev nixpkgs.libunistring nixpkgs.binutils nixpkgs.patchelf nixpkgs.gmp ;;
spack) spack install boehm-gc libunistring binutils patchelf gmp ;;
conda) conda install boehm-gc libunistring binutils patchelf gmp ;;
*)