2018-11-04 22:04:22 +01:00
|
|
|
#!/usr/bin/env bash
|
2018-12-17 13:10:06 +01:00
|
|
|
set -xe
|
2018-11-04 22:04:22 +01:00
|
|
|
INFILE="${1:?Please set arg1 to INFILE}"
|
|
|
|
OUTFILE="${2:?Please set arg2 to OUTFILE}"
|
2018-12-17 13:10:06 +01:00
|
|
|
hash=$(nix-build ${INFILE} --arg pkgs 'import <channels-nixos-stable> {}' --arg config 'null' 2>&1 | grep -oE '[0-9a-z]{52}' | head -n1)
|
2018-11-04 22:04:22 +01:00
|
|
|
sed -E "s/0{52}/${hash}/" ${INFILE} > ${OUTFILE}
|