bump to v0.2.0

This commit is contained in:
Aaron Bieber 2023-05-18 13:10:25 -06:00
parent 91ceef4922
commit 36a2a17e41
No known key found for this signature in database
2 changed files with 9 additions and 6 deletions

View File

@ -13,5 +13,8 @@ sqlc: queries.sql schema.sql
build: build:
go build go build
watch:
echo src/Main.elm | entr -r elm make src/Main.elm --output=assets/main.js
run: sqlc build run: sqlc build
./gostart -name startdev -db ./test.db ./gostart -name startdev -db ./test.db

View File

@ -19,11 +19,11 @@
in { in {
gostart = pkgs.buildGo120Module { gostart = pkgs.buildGo120Module {
pname = "gostart"; pname = "gostart";
version = "v0.1.12"; version = "v0.2.0";
src = ./.; src = ./.;
vendorSha256 = vendorSha256 =
"sha256-DvtZQK0bOXJfBYXnT8cRH6W2BOktJMsQCB8BQFw30T0="; "sha256-IgXMI0+7ZQef1D7N4ObXSoZBgHIvlYuAY2v3ZUc7Jlk=";
}; };
}); });
@ -38,15 +38,15 @@
echo "Go `${pkgs.go}/bin/go version`" echo "Go `${pkgs.go}/bin/go version`"
''; '';
nativeBuildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [
elmPackages.elm
entr
git git
go-tools
go_1_20 go_1_20
gopls gopls
go-tools rlwrap
sqlc sqlc
sqlite sqlite
rlwrap
elmPackages.elm
elmPackages.elm-live
]; ];
}; };
}); });