2022-11-04T01:15:39 dstask 0.23.1 -> 0.25 https://repology.org/metapackage/dstask/versions 2022-11-04T01:15:42 attrpath: dstask 2022-11-04T01:15:42 Checking auto update branch... 2022-11-04T01:15:42 No auto update branch exists 2022-11-04T01:15:43 Old version 0.23.1" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "dstask"; version = "0.25"; src = fetchFromGitHub { owner = "naggie"; repo = pname; rev = "v${version}"; sha256 = "sha256-nsEn9ZhrSWO0kltyEXaehMcFpqVbivSsXOxu/AX7A9U="; }; # Set vendorSha256 to null because dstask vendors its dependencies (meaning # that third party dependencies are stored in the repository). # # Ref # and vendorSha256 = null; doCheck = false; # The ldflags reduce the executable size by stripping some debug stuff. # The other variables are set so that the output of dstask version shows the # git ref and the release version from github. # Ref ldflags = [ "-w" "-s" "-X github.com/naggie/dstask.VERSION=${version}" "-X github.com/naggie/dstask.GIT_COMMIT=v${version}" ]; meta = with lib; { description = "Command line todo list with super-reliable git sync"; homepage = src.meta.homepage; license = licenses.mit; maintainers = with maintainers; [ stianlagstad ]; platforms = platforms.linux; }; }