6 lines
218 B
Bash
Executable file
6 lines
218 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p nix-prefetch
|
|
PACKAGE_PATH=$1
|
|
WRITE_PATH=$2
|
|
|
|
nix-prefetch "{ sha256 }: (callPackage (import $PACKAGE_PATH) { }).overrideAttrs (_: { outputHash = sha256; })" > $WRITE_PATH
|