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-03-20 16:56:54 +03:00
let version = "2023-03-20"; in
2022-12-13 17:21:48 +03:00
buildGoModule {
pname = "d2";
inherit version;
src = fetchFromGitHub {
owner = "terrastruct";
repo = "d2";
2023-03-20 16:56:54 +03:00
rev = "d4e7b2c6b04433a1d48308961d311086de5c1495";
sha256 = "sha256-Ff6f9syLZNsli/OGiqCjY/Zr1QrU79feyXoWPw/uKkk=";
2022-12-13 17:21:48 +03:00
};
2023-03-20 16:56:54 +03:00
vendorSha256 = "sha256-jfGolYHWX/9Zr5JHiWl8mCfaaRT2AU8v32PtgM1KI8c=";
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 = [ "." ];
}