mods: 0.1.1 -> 0.2.0

Diff: https://github.com/charmbracelet/mods/compare/v0.1.1...v0.2.0
This commit is contained in:
Mustafa Zaki Assagaf 2023-07-04 12:06:13 +07:00
parent 4b4a5a4b29
commit 17533481fa

View File

@ -8,16 +8,16 @@
buildGoModule rec {
pname = "mods";
version = "0.1.1";
version = "0.2.0";
src = fetchFromGitHub {
owner = "charmbracelet";
repo = "mods";
rev = "v${version}";
hash = "sha256-r7j7iMkfkFsohguu2vkhyxUbaMwJQURfUJrnC6yUCFI=";
hash = "sha256-jOvXT/KAfSN9E4ZgntCbTu05VJu1jhGtv6gEgLStd98=";
};
vendorHash = "sha256-+0yGFCGd/9bIBjXYp8UPGqKum2di5O1ALMyDSxcVujg=";
vendorHash = "sha256-GNGX8dyTtzRSUznEV/do1H7GEf6nYf0w+CLCZfkktfg=";
ldflags = [ "-s" "-w" "-X=main.version=${version}" ];
@ -29,6 +29,7 @@ buildGoModule rec {
tests.version = testers.testVersion {
package = mods;
command = "HOME=$(mktemp -d) mods -v";
};
};