89 lines
2.0 KiB
Nix
89 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchYarnDeps,
|
|
fetchFromGitHub,
|
|
fixup-yarn-lock,
|
|
nodejs,
|
|
python3,
|
|
makeBinaryWrapper,
|
|
git,
|
|
docker,
|
|
yarn,
|
|
docker-compose,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "devcontainer";
|
|
version = "0.71.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "devcontainers";
|
|
repo = "cli";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
hash = "sha256-plIDK5nOvLKFlRVlPHgpjHPhIh0NAWHmbaKsnYCU/7k=";
|
|
};
|
|
|
|
yarnOfflineCache = fetchYarnDeps {
|
|
yarnLock = "${finalAttrs.src}/yarn.lock";
|
|
hash = "sha256-KSVr6RlBEeDAo8D+7laTN+pSH8Ukl6WTpeAULuG2fq8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
yarn
|
|
fixup-yarn-lock
|
|
python3
|
|
makeBinaryWrapper
|
|
nodejs
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
export HOME=$(mktemp -d)
|
|
yarn config --offline set yarn-offline-mirror ${finalAttrs.yarnOfflineCache}
|
|
# Without this, yarn will try to download the dependencies
|
|
fixup-yarn-lock yarn.lock
|
|
|
|
# set nodedir to prevent node-gyp from downloading headers
|
|
export npm_config_nodedir=${nodejs}
|
|
|
|
yarn --offline --frozen-lockfile
|
|
yarn --offline --frozen-lockfile compile-prod
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/{bin,libexec}
|
|
cp -r dist $out/libexec
|
|
cp devcontainer.js $out/libexec/devcontainer.js
|
|
cp -r node_modules $out/libexec/node_modules
|
|
cp -r $src/scripts $out/libexec/scripts
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postInstall = ''
|
|
makeWrapper "${lib.getExe nodejs}" "$out/bin/devcontainer" \
|
|
--add-flags "$out/libexec/devcontainer.js" \
|
|
--prefix PATH : ${
|
|
lib.makeBinPath [
|
|
git
|
|
docker
|
|
docker-compose
|
|
]
|
|
}
|
|
'';
|
|
|
|
meta = {
|
|
description = "Dev container CLI, run and manage your dev environments via a devcontainer.json";
|
|
homepage = "https://containers.dev/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ rucadi ];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "devcontainer";
|
|
};
|
|
})
|