ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
45 lines
871 B
Nix
45 lines
871 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nodenv";
|
|
version = "1.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nodenv";
|
|
repo = "nodenv";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-S7Uld7wiVJjwuvfupBodIAIOO2c/ywEmFfhEHVOCcCc=";
|
|
};
|
|
|
|
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";
|
|
mainProgram = "nodenv";
|
|
homepage = "https://github.com/nodenv/nodenv/";
|
|
changelog = "https://github.com/nodenv/nodenv/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ alexnortung ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|