Merge pull request #283085 from r-ryantm/auto-update/beancount-language-server

beancount-language-server: 1.3.1 -> 1.3.4
This commit is contained in:
Mario Rodas 2024-01-28 07:59:27 -05:00 committed by GitHub
commit 20cb1539e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,20 +1,26 @@
{ lib
, fetchFromGitHub
, rustPlatform
, stdenv
}:
rustPlatform.buildRustPackage rec {
pname = "beancount-language-server";
version = "1.3.1";
version = "1.3.4";
src = fetchFromGitHub {
owner = "polarmutex";
repo = "beancount-language-server";
rev = "v${version}";
hash = "sha256-9IkbEOG6xcmpowsLj/RHnMFGQxh02JMQsTVli4hvs/M=";
hash = "sha256-C44Z8JaEZvwgocaGjWT3rUAgIBtCRo0xZappMsydR7g=";
};
cargoHash = "sha256-qhN2//hhCaKpm0HAiUL/CfdrtvAXgR34vXBECB8UDxE=";
cargoHash = "sha256-NMSNCURSO1iIWHH27FI5Y0q7+Ghds8VSxRGBOp+fH6A=";
# Workaround for https://github.com/NixOS/nixpkgs/issues/166205
env = lib.optionalAttrs (stdenv.cc.libcxx != null) {
NIX_LDFLAGS = "-l${stdenv.cc.libcxx.cxxabi.libName}";
};
doInstallCheck = true;
postInstallCheck = ''