chenglou92.rescript-vscode: 1.8.1 -> 1.16.0 (#231648)

Co-authored-by: Jayesh Bhoot <jayesh@bhoot.sh>

authored by

Jayesh Bhoot
Jayesh Bhoot
and committed by
GitHub
97fab1a3 391b059c

+5 -5
+2 -2
pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/default.nix
··· 1 1 { lib, stdenv, vscode-utils, callPackage }: 2 2 let 3 - version = "1.8.1"; 3 + version = "1.16.0"; 4 4 rescript-editor-analysis = callPackage ./rescript-editor-analysis.nix { inherit version; }; 5 5 arch = 6 6 if stdenv.isLinux then "linux" ··· 13 13 name = "rescript-vscode"; 14 14 publisher = "chenglou92"; 15 15 inherit version; 16 - sha256 = "sha256-XZG0PRzc3wyAVq9tQeGDlaUZg5YAgkPxJ3NsrdUHoOk="; 16 + sha256 = "sha256-JoC9+NkbLAZXkOKDDMB0Xgzmn+w90pHcokerMrdACi4="; 17 17 }; 18 18 postPatch = '' 19 19 rm -r ${analysisDir}
+3 -3
pkgs/applications/editors/vscode/extensions/chenglou92.rescript-vscode/rescript-editor-analysis.nix
··· 1 - { lib, stdenv, fetchFromGitHub, bash, ocaml, dune_3, version }: 1 + { lib, stdenv, fetchFromGitHub, bash, ocaml, ocamlPackages, dune_3, version }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "rescript-editor-analysis"; ··· 8 8 owner = "rescript-lang"; 9 9 repo = "rescript-vscode"; 10 10 rev = version; 11 - sha256 = "sha256-a8otK0BxZbl0nOp4QWQRkjb5fM85JA4nVkLuKAz71xU="; 11 + sha256 = "sha256-+Ht8qWwxtFWHFMiV/aoZIs2S3SxkOWgdwSKN+akp/LU="; 12 12 }; 13 13 14 - nativeBuildInputs = [ ocaml dune_3 ]; 14 + nativeBuildInputs = [ ocaml dune_3 ocamlPackages.cppo ]; 15 15 16 16 # Skip testing phases because they need to download and install node modules 17 17 postPatch = ''