2022-11-19T00:32:33 fnm 1.31.1 -> 1.32.0 https://github.com/Schniz/fnm/releases 2022-11-19T00:32:35 attrpath: fnm 2022-11-19T00:32:35 Checking auto update branch... 2022-11-19T00:32:35 No auto update branch exists 2022-11-19T00:32:36 Old version 1.31.1" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , rustPlatform , installShellFiles , DiskArbitration , Foundation , Security }: rustPlatform.buildRustPackage rec { pname = "fnm"; version = "1.32.0"; src = fetchFromGitHub { owner = "Schniz"; repo = pname; rev = "v${version}"; sha256 = "sha256-ttprb8w4EWq2F8TbeUt+rCc0paxLXkEzISnAskIstmo="; }; nativeBuildInputs = [ installShellFiles ]; buildInputs = lib.optionals stdenv.isDarwin [ DiskArbitration Foundation Security ]; cargoSha256 = "sha256-6nw7q/XQ3EOaXmyiqJJjLSX4W9Mn9W5nfl8shUttBx0="; 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 ]; }; }