Commit 7b94aa96 authored by Marie Ramlow's avatar Marie Ramlow
Browse files

vencord: remove custom esbuild override

Upstream's lockfile seems to include hashes for esbuild on every
platform we need now, so this is no longer required.
parent e69549d3
Loading
Loading
Loading
Loading
+0 −15
Original line number Diff line number Diff line
{
  curl,
  esbuild,
  fetchFromGitHub,
  git,
  jq,
@@ -36,20 +35,6 @@ stdenv.mkDerivation (finalAttrs: {
  ];

  env = {
    ESBUILD_BINARY_PATH = lib.getExe (
      esbuild.overrideAttrs (
        final: _: {
          version = "0.25.1";
          src = fetchFromGitHub {
            owner = "evanw";
            repo = "esbuild";
            rev = "v${final.version}";
            hash = "sha256-vrhtdrvrcC3dQoJM6hWq6wrGJLSiVww/CNPlL1N5kQ8=";
          };
          vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ=";
        }
      )
    );
    VENCORD_REMOTE = "${finalAttrs.src.owner}/${finalAttrs.src.repo}";
    VENCORD_HASH = "${finalAttrs.version}";
  };