Unverified Commit 0f5afb7b authored by Seth Flynn's avatar Seth Flynn
Browse files

turbo: `rec` -> `finalAttrs`

parent a7ae5005
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -15,14 +15,14 @@
  zlib,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "turbo-unwrapped";
  version = "2.4.2";

  src = fetchFromGitHub {
    owner = "vercel";
    repo = "turbo";
    tag = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-wXQY9W15J7+Plv3IvB8XaZd+Hn0TP2qDOB36bPJwfpY=";
  };

@@ -71,7 +71,7 @@ rustPlatform.buildRustPackage rec {
  meta = {
    description = "High-performance build system for JavaScript and TypeScript codebases";
    homepage = "https://turbo.build/";
    changelog = "https://github.com/vercel/turbo/releases/tag/v${version}";
    changelog = "https://github.com/vercel/turbo/releases/tag/${toString finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      dlip
@@ -79,4 +79,4 @@ rustPlatform.buildRustPackage rec {
    ];
    mainProgram = "turbo";
  };
}
})