d2: update to latest master

This commit is contained in:
Dmitriy Pleshevskiy 2023-02-15 22:19:41 +03:00
parent b11347fa9d
commit 5f07d4e256
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
2 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@
, installShellFiles
}:
let version = "2023-01-04"; in
let version = "2023-02-15"; in
buildGoModule {
pname = "d2";
inherit version;
@ -12,11 +12,11 @@ buildGoModule {
src = fetchFromGitHub {
owner = "terrastruct";
repo = "d2";
rev = "80892f9ff9317b709d7176a6bffbbd4ca92bf9a3";
sha256 = "sha256-nG4elO7yA58XXCs74Y1CPulYcr7OfeaEA9N7Bfa/X0Y=";
rev = "758446783426613df61a84b70e685fb64282f9ea";
sha256 = "sha256-Sf82OqDyCLUXreY1GmIo4+ePUCBEWOa6eSOlBGcTnZk=";
};
vendorSha256 = "sha256-t94xCNteYRpbV2GzrD4ppD8xfUV1HTJPkipEzr36CaM=";
vendorSha256 = "sha256-VUedaPnwLvfnL+WXKGBdeG1eUQynQSYPQSdpUqHixc0=";
ldflags = [
"-s"

View File

@ -3,7 +3,7 @@
let
platform = if stdenv.isLinux then "linux" else "darwin";
arch = if lib.hasPrefix "x86_" system then "amd64" else "arm64";
version = "0.2.11";
version = "0.2.15";
fileName = "tala-v${version}-${platform}-${arch}.tar.gz";
in
stdenv.mkDerivation {
@ -12,7 +12,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "https://github.com/terrastruct/TALA/releases/download/v${version}/${fileName}";
sha256 = "sha256-Ld8GxZvbV6PGZisQah1yePCMtAyPgNHQEU9o4MfXIaA=";
sha256 = "sha256-CZvtNGtaJgeto+I9J8avcOQLeEChDVtwkvb2MWaP5pc=";
};
nativeBuildInputs = [ installShellFiles ];