d2 0.2.2 -> 0.2.3 https://github.com/terrastruct/d2/releases attrpath: d2 Checking auto update branch... No auto update branch exists Old version 0.2.2" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub , installShellFiles , testers , d2 }: buildGoModule rec { pname = "d2"; version = "0.2.3"; src = fetchFromGitHub { owner = "terrastruct"; repo = pname; rev = "v${version}"; hash = "sha256-HFopiZamQ0A40u/+/pTxwYb598vyvWlNV4510Ode5RM="; }; vendorHash = "sha256-xmB1i7IKTELvqZBxVL23Zpr7CfihW6LPBKwPUUXnHmQ="; ldflags = [ "-s" "-w" "-X oss.terrastruct.com/d2/lib/version.Version=${version}" ]; nativeBuildInputs = [ installShellFiles ]; postInstall = '' installManPage ci/release/template/man/d2.1 ''; subPackages = [ "." ]; passthru.tests.version = testers.testVersion { package = d2; }; meta = with lib; { description = "A modern diagram scripting language that turns text to diagrams"; homepage = "https://d2lang.com"; license = licenses.mpl20; maintainers = with maintainers; [ dit7ya ]; }; }