Unverified Commit 2e7e1615 authored by Sefa Eyeoglu's avatar Sefa Eyeoglu
Browse files

e-search: add gitMinimal to fetchPnpmDeps using nativeBuildInputs



fetchPnpmDeps now allows merging attributes like nativeBuildInputs
making workarounds like these obsolete.

Signed-off-by: default avatarSefa Eyeoglu <contact@scrumplex.net>
parent 89153437
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -65,11 +65,9 @@ stdenv.mkDerivation (finalAttrs: {

  pnpmDeps = fetchPnpmDeps {
    inherit (finalAttrs) pname version src;
    nativeBuildInputs = [ gitMinimal ];
    pnpm = pnpm';
    fetcherVersion = 2;
    prePnpmInstall = ''
      export PATH=$PATH:${gitMinimal}/bin
    '';
    hash = "sha256-wPwsFY7wvbE1LW5PMwMZKejELtqmdsYO2RVrEuOzdcg=";
  };