2022-11-06T05:31:47 oh-my-posh 12.10.0 -> 12.13.0 https://github.com/jandedobbeleer/oh-my-posh/releases 2022-11-06T05:31:50 attrpath: oh-my-posh 2022-11-06T05:31:50 Checking auto update branch... 2022-11-06T05:31:50 No auto update branch exists 2022-11-06T05:31:51 Old version 12.10.0" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "oh-my-posh"; version = "12.12.1"; src = fetchFromGitHub { owner = "jandedobbeleer"; repo = pname; rev = "v${version}"; sha256 = "sha256-6h/TV9Ddv+1pYPV7ZvOfEOOvbocRpLXdeR6EchTvV/A="; }; vendorSha256 = "sha256-OrtKFkWXqVoXKmN6BT8YbCNjR1gRTT4gPNwmirn7fjU="; sourceRoot = "source/src"; nativeBuildInputs = [ installShellFiles ]; ldflags = [ "-s" "-w" "-X" "main.Version=${version}" ]; tags = [ "netgo" "osusergo" "static_build" ]; postInstall = '' mkdir -p $out/share/oh-my-posh cp -r ${src}/themes $out/share/oh-my-posh/ installShellCompletion --cmd oh-my-posh \ --bash <($out/bin/oh-my-posh completion bash) \ --fish <($out/bin/oh-my-posh completion fish) \ --zsh <($out/bin/oh-my-posh completion zsh) ''; meta = with lib; { description = "A prompt theme engine for any shell"; homepage = "https://ohmyposh.dev"; license = licenses.mit; maintainers = with maintainers; [ lucperkins ]; }; }