d2: bump to latest master

d2: bump d2plugin-tala to 2.11 version
This commit is contained in:
Dmitriy Pleshevskiy 2023-01-04 06:34:45 +03:00
parent 4a7c15afc8
commit 66824d2f84
Signed by: pleshevskiy
GPG key ID: 1B59187B161C0215
2 changed files with 5 additions and 5 deletions

View file

@ -4,7 +4,7 @@
, installShellFiles , installShellFiles
}: }:
let version = "2022-12-26"; in let version = "2023-01-04"; in
buildGoModule { buildGoModule {
pname = "d2"; pname = "d2";
inherit version; inherit version;
@ -12,8 +12,8 @@ buildGoModule {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "terrastruct"; owner = "terrastruct";
repo = "d2"; repo = "d2";
rev = "1efc46d21766bc6fb8cd49ab9ed572e073658b84"; rev = "80892f9ff9317b709d7176a6bffbbd4ca92bf9a3";
sha256 = "sha256-X+/tBdJvkzHd/6qQKrdR0ox4KX4TuEffBnAD05yLP+I="; sha256 = "sha256-nG4elO7yA58XXCs74Y1CPulYcr7OfeaEA9N7Bfa/X0Y=";
}; };
vendorSha256 = "sha256-t94xCNteYRpbV2GzrD4ppD8xfUV1HTJPkipEzr36CaM="; vendorSha256 = "sha256-t94xCNteYRpbV2GzrD4ppD8xfUV1HTJPkipEzr36CaM=";

View file

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