tools/pkgs/d2/d2-unwrapped.nix

35 lines
674 B
Nix
Raw Normal View History

2022-12-13 17:21:48 +03:00
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
2023-11-25 01:31:04 +03:00
let version = "2023-11-25"; in
2022-12-13 17:21:48 +03:00
buildGoModule {
pname = "d2";
inherit version;
src = fetchFromGitHub {
owner = "terrastruct";
repo = "d2";
2023-11-25 01:31:04 +03:00
rev = "7c1d806eaac22cbe3053c728511213fae577c005";
sha256 = "sha256-bp45tkV7f6rGDAmhle/e3cHIqa7nPakANvk4QxetLts=";
2022-12-13 17:21:48 +03:00
};
2023-11-25 01:31:04 +03:00
vendorSha256 = "sha256-QMptNFCoJouI555WkA+4TJhaEzQgJJmca3jVpM3neeI=";
2022-12-13 17:21:48 +03:00
ldflags = [
"-s"
"-w"
"-X oss.terrastruct.com/d2/lib/version.Version=${version}"
];
nativeBuildInputs = [ installShellFiles ];
2022-12-13 23:14:30 +03:00
patches = [ ];
2022-12-13 17:21:48 +03:00
postInstall = "installManPage ci/release/template/man/d2.1";
subPackages = [ "." ];
}