1
0
Fork 0
mirror of https://codeberg.org/demostf/api.git synced 2026-06-03 09:54:17 +02:00

update parser to 0.6.1

This commit is contained in:
Robin Appelman 2025-06-04 18:22:19 +02:00
commit bdf99cc145
2 changed files with 8 additions and 6 deletions

View file

@ -1,16 +1,17 @@
{
rustPlatform,
fetchFromGitHub,
fetchFromGitea,
}:
rustPlatform.buildRustPackage {
pname = "demostf-parser";
version = "0.5.1";
version = "0.6.1";
src = fetchFromGitHub {
src = fetchFromGitea {
domain = "codeberg.org";
owner = "demostf";
repo = "parser";
rev = "0cd87a8a40e2a6af637d831b272c2758cebd2f9c";
hash = "sha256-bKcc0hWTkdYUDMI/DjUh45abuBeQEvkn6TsuAz02H5Y=";
rev = "v0.6.1";
hash = "sha256-Hia97pYryYNal1HCoyt8RzAyqXoBp45gD3ERePIfNvs=";
};
cargoBuildFlags = ''
@ -19,6 +20,6 @@ rustPlatform.buildRustPackage {
doCheck = false;
cargoHash = "sha256-bODrlLFSV/CQX7fximCpqLQc1sPOIe+6xM1W1731KUs=";
cargoHash = "sha256-FidQgOAfNyzhMs3aaT/FVJ/70XG/Z6GW3/MohegaJMw=";
meta.mainProgram = "parse_demo";
}