29fedf210f
A build hook to run functions previously only implemented privately in `pkgs/build-support/release/functions.sh`.
10 lines
169 B
Nix
10 lines
169 B
Nix
{ substituteAll, unzip, zip }:
|
|
|
|
substituteAll {
|
|
name = "canonicalize-jar";
|
|
src = ./canonicalize-jar.sh;
|
|
|
|
unzip = "${unzip}/bin/unzip";
|
|
zip = "${zip}/bin/zip";
|
|
}
|