2022-12-09T12:56:49 fnm 1.32.0 -> 1.33.1 https://repology.org/metapackage/fnm/versions 2022-12-09T12:56:51 attrpath: fnm 2022-12-09T12:56:51 Checking auto update branch... 2022-12-09T12:56:51 No auto update branch exists 2022-12-09T12:56:52 Old version 1.32.0" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , rustPlatform , installShellFiles , DiskArbitration , Foundation , Security }: rustPlatform.buildRustPackage rec { pname = "fnm"; version = "1.33.1"; src = fetchFromGitHub { owner = "Schniz"; repo = pname; rev = "v${version}"; sha256 = "sha256-dwnPFbgfrc+1qF3u5Nm1KQu84UWK6H6VerSUaQacbRs="; }; nativeBuildInputs = [ installShellFiles ]; buildInputs = lib.optionals stdenv.isDarwin [ DiskArbitration Foundation Security ]; cargoSha256 = "sha256-T88C5oYyVfepUw0cdNRhEwrvEI0t1gw/5qZL1E46pkY="; 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 ]; }; }