{ lib, mkYarnPackage, fetchFromGitHub, nodejs, runtimeShell }: # Notes for the upgrade: # * Download the tarball of the new version to use. # * Replace new `package.json`, `yarn.nix`, `yarn.lock` here. # * Update `version`+`hash` and rebuild. mkYarnPackage rec { pname = "grafana-image-renderer"; version = "3.7.1"; src = fetchFromGitHub { owner = "grafana"; repo = "grafana-image-renderer"; rev = "v${version}"; sha256 = "sha256-hYjl8jwRqcWdxDlUxUBTd3A6giJVWa0l+BZvfYInD0Y="; }; buildPhase = '' runHook preBuild pushd deps/renderer yarn run build popd runHook postBuild ''; dontInstall = true; packageJSON = ./package.json; yarnNix = ./yarn.nix; yarnLock = ./yarn.lock; distPhase = '' runHook preDist shopt -s extglob pushd deps/renderer install_path="$out/libexec/grafana-image-renderer" mkdir -p $install_path cp -R ../../node_modules $install_path cp -R ./!(node_modules) $install_path popd mkdir -p $out/bin cat >$out/bin/grafana-image-renderer <