about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/pnpm/generic.nix
blob: 7050df4489709604159fb34ceb84513736a52b44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
  lib,
  stdenvNoCC,
  callPackages,
  fetchurl,
  installShellFiles,
  nodejs,
  testers,
  withNode ? true,

  version,
  hash,
}: stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "pnpm";
  inherit version;

  src = fetchurl {
    url = "https://registry.npmjs.org/pnpm/-/pnpm-${finalAttrs.version}.tgz";
    inherit hash;
  };
  # Remove binary files from src, we don't need them, and this way we make sure
  # our distribution is free of binaryNativeCode
  preConfigure = ''
    rm -r dist/reflink.*node dist/vendor
  '';

  buildInputs = lib.optionals withNode [ nodejs ];

  nativeBuildInputs = [ installShellFiles nodejs ];

  installPhase = ''
    runHook preInstall

    install -d $out/{bin,libexec}
    cp -R . $out/libexec/pnpm
    ln -s $out/libexec/pnpm/bin/pnpm.cjs $out/bin/pnpm
    ln -s $out/libexec/pnpm/bin/pnpx.cjs $out/bin/pnpx

    runHook postInstall
  '';

  postInstall =
    if lib.toInt (lib.versions.major version) < 9 then ''
      export HOME="$PWD"
      node $out/bin/pnpm install-completion bash
      node $out/bin/pnpm install-completion fish
      node $out/bin/pnpm install-completion zsh
      sed -i '1 i#compdef pnpm' .config/tabtab/zsh/pnpm.zsh
      installShellCompletion \
        .config/tabtab/bash/pnpm.bash \
        .config/tabtab/fish/pnpm.fish \
        .config/tabtab/zsh/pnpm.zsh
    '' else ''
      node $out/bin/pnpm completion bash >pnpm.bash
      node $out/bin/pnpm completion fish >pnpm.fish
      node $out/bin/pnpm completion zsh >pnpm.zsh
      sed -i '1 i#compdef pnpm' pnpm.zsh
      installShellCompletion pnpm.{bash,fish,zsh}
    '';

  passthru = let
    fetchDepsAttrs = callPackages ./fetch-deps { pnpm = finalAttrs.finalPackage; };
  in {
    inherit (fetchDepsAttrs) fetchDeps configHook;

    tests.version = lib.optionalAttrs withNode (
      testers.testVersion { package = finalAttrs.finalPackage; }
    );
  };

  meta = with lib; {
    description = "Fast, disk space efficient package manager for JavaScript";
    homepage = "https://pnpm.io/";
    changelog = "https://github.com/pnpm/pnpm/releases/tag/v${finalAttrs.version}";
    license = licenses.mit;
    maintainers = with maintainers; [ Scrumplex ];
    platforms = platforms.all;
    mainProgram = "pnpm";
  };
})