Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

turbo: fix build and update to v1.10.16

authored by Dane Lipscombe and committed by Yt 98ea67a5 d5647c57

+5 -5
+5 -5
pkgs/tools/misc/turbo/default.nix
··· 1 { stdenv 2 , lib 3 , fetchFromGitHub 4 - , buildGoModule 5 , git 6 , nodejs 7 , protobuf ··· 25 , CoreFoundation 26 }: 27 let 28 - version = "1.10.13"; 29 src = fetchFromGitHub { 30 owner = "vercel"; 31 repo = "turbo"; ··· 38 inherit src version; 39 cargoBuildFlags = [ "--package" "turborepo-ffi" ]; 40 41 - cargoHash = "sha256-CIKuW8qKJiqgDBPfuCIBcWUP41BHwAa1m9vmcQ9ZmAY="; 42 43 RUSTC_BOOTSTRAP = 1; 44 nativeBuildInputs = [ ··· 59 }; 60 61 62 - go-turbo = buildGoModule { 63 inherit src version; 64 pname = "go-turbo"; 65 modRoot = "cli"; ··· 139 ]; 140 RELEASE_TURBO_CLI = "true"; 141 142 - cargoHash = "sha256-rKdonANA6WvXPMpK8sC95hsX9Yb5zedeBezY4LWzsZE="; 143 144 RUSTC_BOOTSTRAP = 1; 145 nativeBuildInputs = [
··· 1 { stdenv 2 , lib 3 , fetchFromGitHub 4 + , buildGo120Module 5 , git 6 , nodejs 7 , protobuf ··· 25 , CoreFoundation 26 }: 27 let 28 + version = "1.10.16"; 29 src = fetchFromGitHub { 30 owner = "vercel"; 31 repo = "turbo"; ··· 38 inherit src version; 39 cargoBuildFlags = [ "--package" "turborepo-ffi" ]; 40 41 + cargoHash = "sha256-Mj46yNOYTqt732d7SJ3sAeXbgDkoh7o7S23lKVgpvKY="; 42 43 RUSTC_BOOTSTRAP = 1; 44 nativeBuildInputs = [ ··· 59 }; 60 61 62 + go-turbo = buildGo120Module { 63 inherit src version; 64 pname = "go-turbo"; 65 modRoot = "cli"; ··· 139 ]; 140 RELEASE_TURBO_CLI = "true"; 141 142 + cargoHash = "sha256-F+mEDkP7GismosXj+ICJCE4SHhCpWK7FiSyqjJM6LJ4="; 143 144 RUSTC_BOOTSTRAP = 1; 145 nativeBuildInputs = [