d2: bump to latest master

This commit is contained in:
Dmitriy Pleshevskiy 2022-12-19 18:36:40 +03:00
parent fa26d322e3
commit 225af4c892
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-13"; in let version = "2022-12-19"; in
buildGoModule { buildGoModule {
pname = "d2"; pname = "d2";
inherit version; inherit version;
@ -12,11 +12,11 @@ buildGoModule {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "terrastruct"; owner = "terrastruct";
repo = "d2"; repo = "d2";
rev = "bf139735bf4ae782d9e855d158d27b5c34459ba1"; rev = "9aef6b80493878eadc7c846be5bc3b0caeeb4a51";
sha256 = "sha256-KyOaVIb8l9sewcHtHWDnhdxdFIOjzu0lejTvTs7Pa10="; sha256 = "sha256-IUXHmuQgBBnn/LvVukVVQ0JkAKLl9Fb/jvV8E0R8mgA=";
}; };
vendorSha256 = "sha256-sQ8QY4A/IzlnomQETUGPwAqQDd5yyKv98DwctfJ5PSk="; vendorSha256 = "sha256-k9zaZ28vs3R5usWUW5N78zz0PuP5UrYEhgXxpQ+v5sE=";
ldflags = [ ldflags = [
"-s" "-s"

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.7"; version = "0.2.8";
fileName = "tala-v${version}-${platform}-${arch}.tar.gz"; fileName = "tala-v${version}-${platform}-${arch}.tar.gz";
in in
stdenv.mkDerivation { stdenv.mkDerivation {