nixpkgs/pkgs/tools/text/d2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
2023-04-09 16:03:42 +02:00
, git
2022-12-07 14:59:02 +01:00
, testers
, d2
}:
buildGoModule rec {
pname = "d2";
2023-12-17 01:32:15 +01:00
version = "0.6.3";
src = fetchFromGitHub {
owner = "terrastruct";
repo = pname;
rev = "v${version}";
2023-12-17 01:32:15 +01:00
hash = "sha256-GImv4OJHanj6dKtAJpTaGLrR4AaVTboiYHwRdh/gXaU=";
};
2023-12-17 01:32:15 +01:00
vendorHash = "sha256-T7eki06fQuGvYIJKvBJsIkFS1fQ9Jbv+ieUSr2vupqg=";
2023-04-09 16:03:42 +02:00
excludedPackages = [ "./e2etests" ];
ldflags = [
"-s"
"-w"
2023-08-02 00:47:16 +02:00
"-X oss.terrastruct.com/d2/lib/version.Version=v${version}"
];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installManPage ci/release/template/man/d2.1
'';
2023-04-09 16:03:42 +02:00
nativeCheckInputs = [ git ];
preCheck = ''
# See https://github.com/terrastruct/d2/blob/master/docs/CONTRIBUTING.md#running-tests.
export TESTDATA_ACCEPT=1
'';
2022-12-07 14:59:02 +01:00
2023-08-02 00:47:16 +02:00
passthru.tests.version = testers.testVersion {
package = d2;
version = "v${version}";
};
meta = with lib; {
description = "A modern diagram scripting language that turns text to diagrams";
homepage = "https://d2lang.com";
license = licenses.mpl20;
2023-09-27 03:06:29 +02:00
maintainers = with maintainers; [ dit7ya kashw2 ];
};
}