albatros/hcl/nixcache/pin.sh

10 lines
235 B
Bash

#!/usr/bin/env bash
set -euxo pipefail
set -f # disable globbing
mkdir -p /nix/var/nix/gcroots/albatros
DRV_NAME=$(echo $DRV_PATH | cut -d '/' -f 4)
GCROOT=/nix/var/nix/gcroots/albatros/$DRV_NAME
rm -f $GCROOT
ln -s $DRV_PATH $GCROOT