beancount-language-server 1.3.1 -> 1.3.3 https://repology.org/project/beancount-language-server/versions attrpath: beancount-language-server Checking auto update branch... No auto update branch exists Old version 1.3.1" not present in master derivation file with contents: { lib , fetchFromGitHub , rustPlatform , stdenv }: rustPlatform.buildRustPackage rec { pname = "beancount-language-server"; version = "1.3.4"; src = fetchFromGitHub { owner = "polarmutex"; repo = "beancount-language-server"; rev = "v${version}"; hash = "sha256-C44Z8JaEZvwgocaGjWT3rUAgIBtCRo0xZappMsydR7g="; }; 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 = '' $out/bin/beancount-language-server --help > /dev/null ''; meta = with lib; { description = "A Language Server Protocol (LSP) for beancount files"; homepage = "https://github.com/polarmutex/beancount-language-server"; license = with licenses; [ mit ]; maintainers = with maintainers; [ polarmutex ]; }; }