d2: init at 0.0.13 (#202355)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
baf863dbd5
commit
33db1dc000
2 changed files with 42 additions and 0 deletions
40
pkgs/tools/text/d2/default.nix
Normal file
40
pkgs/tools/text/d2/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "d2";
|
||||
version = "0.0.13";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "terrastruct";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-2abGQmgwqxWFk7NScdgfEjRYZF2rw8kxTKRwcl2LRg0=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-/BEl4UqOL4Ux7I2eubNH2YGGl4DxntpI5WN9ggvYu80=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X oss.terrastruct.com/d2/lib/version.Version=${version}"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
postInstall = ''
|
||||
installManPage ci/release/template/man/d2.1
|
||||
'';
|
||||
|
||||
subPackages = [ "cmd/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 ];
|
||||
};
|
||||
}
|
|
@ -6356,6 +6356,8 @@ with pkgs;
|
|||
|
||||
conform = callPackage ../applications/version-management/git-and-tools/conform { };
|
||||
|
||||
d2 = callPackage ../tools/text/d2 { };
|
||||
|
||||
easeprobe = callPackage ../tools/misc/easeprobe { };
|
||||
|
||||
emscripten = callPackage ../development/compilers/emscripten {
|
||||
|
|
Loading…
Reference in a new issue