410b979fe2
GitOrigin-RevId: a64e169e396460d6b5763a1de1dd197df8421688
44 lines
918 B
Nix
44 lines
918 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, testers
|
|
, d2
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "d2";
|
|
version = "0.2.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "terrastruct";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-bZJu4l5xAVqm/1HIhHfnZF9JRswAE/c6OzuZ8mmHA9U=";
|
|
};
|
|
|
|
vendorHash = "sha256-wXE2+a30KohIOuxFeBQPcV7X2Ka+4t7zqHdr48kifY0=";
|
|
|
|
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 ];
|
|
};
|
|
}
|