Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / nodenv / default.nix
blob657492966cf2782ee66d98266295fc37b86b1167
1 { stdenv
2 , lib
3 , fetchFromGitHub
4 }:
6 stdenv.mkDerivation rec {
7   pname = "nodenv";
8   version = "1.4.1";
10   src = fetchFromGitHub {
11     owner = "nodenv";
12     repo = "nodenv";
13     rev = "v${version}";
14     sha256 = "sha256-S7Uld7wiVJjwuvfupBodIAIOO2c/ywEmFfhEHVOCcCc=";
15   };
17   buildPhase = ''
18     runHook preBuild
20     bash src/configure
21     make -C src
23     runHook postBuild
24   '';
26   installPhase = ''
27     runHook preInstall
29     mkdir -p $out
30     cp -r libexec $out/
31     cp -r bin $out/
33     runHook postInstall
34   '';
36   meta = with lib; {
37     description = "Manage multiple NodeJS versions";
38     homepage = "https://github.com/nodenv/nodenv/";
39     changelog = "https://github.com/nodenv/nodenv/releases/tag/v${version}";
40     license = licenses.mit;
41     maintainers = with maintainers; [ alexnortung ];
42     platforms = platforms.unix;
43   };