fnm 1.33.1 -> 1.34.0 https://github.com/Schniz/fnm/releases attrpath: fnm Checking auto update branch... No auto update branch exists Old version 1.33.1" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , rustPlatform , installShellFiles , DiskArbitration , Foundation , Security }: rustPlatform.buildRustPackage rec { pname = "fnm"; version = "1.34.0"; src = fetchFromGitHub { owner = "Schniz"; repo = pname; rev = "v${version}"; sha256 = "sha256-ttzfyTfv0835w4BaSWxT17/e/fjNCxWABW/kZKpy7q8="; }; nativeBuildInputs = [ installShellFiles ]; buildInputs = lib.optionals stdenv.isDarwin [ DiskArbitration Foundation Security ]; cargoHash = "sha256-hYRVlCQ9+FCQFtT6uku7FynzHMdHvKATqkr5tCJoZCU="; doCheck = false; postInstall = '' installShellCompletion --cmd fnm \ --bash <($out/bin/fnm completions --shell bash) \ --fish <($out/bin/fnm completions --shell fish) \ --zsh <($out/bin/fnm completions --shell zsh) ''; meta = with lib; { description = "Fast and simple Node.js version manager"; homepage = "https://github.com/Schniz/fnm"; license = licenses.gpl3Only; maintainers = with maintainers; [ kidonng ]; }; }