mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
6705fb368e
This commit adds nodenv which was requested in #153845
45 lines
848 B
Nix
45 lines
848 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nodenv";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nodenv";
|
|
repo = "nodenv";
|
|
rev = "v${version}";
|
|
sha256 = "0fgc23jd95rjll3dy5hnli8ksfc7rwscw53sdgss4yaharwlg8l2";
|
|
};
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
bash src/configure
|
|
make -C src
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out
|
|
cp -r libexec $out/
|
|
cp -r bin $out/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Manage multiple NodeJS versions";
|
|
homepage = "https://github.com/nodenv/nodenv/";
|
|
changelog = "https://github.com/nodenv/nodenv/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ alexnortung ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|