2022-12-08T03:02:46 d2 0.0.13 -> 0.1.0 https://github.com/terrastruct/d2/releases 2022-12-08T03:02:49 attrpath: d2 2022-12-08T03:02:49 Checking auto update branch... 2022-12-08T03:02:49 No auto update branch exists 2022-12-08T03:02:49 Old version 0.0.13" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub , installShellFiles , testers , d2 }: buildGoModule rec { pname = "d2"; version = "0.1.0"; src = fetchFromGitHub { owner = "terrastruct"; repo = pname; rev = "v${version}"; hash = "sha256-QRgHmQOrw1ZdZffjVnqY3epNkVvCNtR06fyQgKVXoRk="; }; vendorHash = "sha256-SO3ZeAJu4XOPDlJ2gUSYFPNG8RcOHfCsn2RKPT+FZy4="; 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 ]; }; }