mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
3bf6d6d251
this has been overdue for a while. we also add the `shell` language to the bundle (in addition to nix and bash) for ShellSession highlighting. perhaps we should use the full, regular distribution instead of a custom build, but eh.
44 lines
862 B
Bash
Executable file
44 lines
862 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl -p unzip
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
root=$(pwd)
|
|
|
|
if [ ! -f "./update.sh" ]; then
|
|
echo "Please run this script from within pkgs/misc/documentation-highlighter/!"
|
|
exit 1
|
|
fi
|
|
|
|
scratch=$(mktemp -d -t tmp.XXXXXXXXXX)
|
|
function finish {
|
|
rm -rf "$scratch"
|
|
}
|
|
trap finish EXIT
|
|
|
|
|
|
mkdir $scratch/src
|
|
cd $scratch/src
|
|
|
|
curl \
|
|
-X POST \
|
|
-H 'Content-Type: application/json' \
|
|
--data-raw '{
|
|
"api": 2,
|
|
"languages": ["bash", "nix", "shell"]
|
|
}' \
|
|
https://highlightjs.org/api/download > $scratch/out.zip
|
|
|
|
|
|
unzip "$scratch/out.zip"
|
|
out="$root/"
|
|
mkdir -p "$out"
|
|
cp ./highlight.min.js "$out/highlight.pack.js"
|
|
cp ./{LICENSE,styles/mono-blue.css} "$out"
|
|
|
|
(
|
|
echo "This file was generated with pkgs/misc/documentation-highlighter/update.sh"
|
|
echo ""
|
|
cat README.md
|
|
) > "$out/README.md"
|