diff --git a/pkgs/d2/d2-unwrapped.nix b/pkgs/d2/d2-unwrapped.nix index 1760852..56fd624 100644 --- a/pkgs/d2/d2-unwrapped.nix +++ b/pkgs/d2/d2-unwrapped.nix @@ -4,7 +4,7 @@ , installShellFiles }: -let version = "2022-12-19"; in +let version = "2022-12-26"; in buildGoModule { pname = "d2"; inherit version; @@ -12,11 +12,11 @@ buildGoModule { src = fetchFromGitHub { owner = "terrastruct"; repo = "d2"; - rev = "9aef6b80493878eadc7c846be5bc3b0caeeb4a51"; - sha256 = "sha256-IUXHmuQgBBnn/LvVukVVQ0JkAKLl9Fb/jvV8E0R8mgA="; + rev = "1efc46d21766bc6fb8cd49ab9ed572e073658b84"; + sha256 = "sha256-X+/tBdJvkzHd/6qQKrdR0ox4KX4TuEffBnAD05yLP+I="; }; - vendorSha256 = "sha256-k9zaZ28vs3R5usWUW5N78zz0PuP5UrYEhgXxpQ+v5sE="; + vendorSha256 = "sha256-t94xCNteYRpbV2GzrD4ppD8xfUV1HTJPkipEzr36CaM="; ldflags = [ "-s" diff --git a/pkgs/d2/d2plugin-tala.nix b/pkgs/d2/d2plugin-tala.nix index 6ea89bc..0a4489c 100644 --- a/pkgs/d2/d2plugin-tala.nix +++ b/pkgs/d2/d2plugin-tala.nix @@ -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.8"; + version = "0.2.9"; 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-p6nXOcveZ28Q1ODpbV9dVrGTtoXgxkFdsiXY61BK0dA="; + sha256 = "sha256-u5wR71Nga9s0hFfAsUlSTTswbwVmtlDXU7vrVesX/Gs="; }; nativeBuildInputs = [ installShellFiles ];