2022-11-17T03:17:19 soft-serve 0.4.0 -> 0.4.1 https://github.com/charmbracelet/soft-serve/releases 2022-11-17T03:17:22 attrpath: soft-serve 2022-11-17T03:17:22 Checking auto update branch... 2022-11-17T03:17:22 No auto update branch exists 2022-11-17T03:17:22 Old version 0.4.0" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, makeWrapper, git }: buildGoModule rec { pname = "soft-serve"; version = "0.4.1"; src = fetchFromGitHub { owner = "charmbracelet"; repo = "soft-serve"; rev = "v${version}"; sha256 = "sha256-xlfAmAU9u4pI3q8EZm4c7BF/lPAHMjLYa/57VWq067M="; }; vendorSha256 = "sha256-XSAMKR5WPG/6ix5T0e9jtHJXQ6HNkh7li+BDFyIhATQ="; doCheck = false; ldflags = [ "-s" "-w" "-X=main.Version=${version}" ]; nativeBuildInputs = [ makeWrapper ]; postInstall = '' wrapProgram $out/bin/soft \ --prefix PATH : "${lib.makeBinPath [ git ]}" ''; meta = with lib; { description = "A tasty, self-hosted Git server for the command line"; homepage = "https://github.com/charmbracelet/soft-serve"; changelog = "https://github.com/charmbracelet/soft-serve/releases/tag/v${version}"; mainProgram = "soft"; license = licenses.mit; maintainers = with maintainers; [ penguwin ]; }; }