tomlc17: fix update script, 250712 -> 260323 (#476280)

This commit is contained in:
Peder Bergebakken Sundt
2026-04-06 00:34:23 +00:00
committed by GitHub
+5 -3
View File
@@ -7,13 +7,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "tomlc17";
version = "250712";
version = "260323";
src = fetchFromGitHub {
owner = "cktan";
repo = "tomlc17";
tag = "R${finalAttrs.version}";
hash = "sha256-0if07Zj7Og+DBc/gxmAEHQh7QwAo8C/4S+x9IttEUjI=";
hash = "sha256-pwUJkZRiVqTZqbjTcB/Uw5xY8vuvprWuiQVC/kzFsNM=";
};
doCheck = false; # tries to download toml-test suite
@@ -22,7 +22,9 @@ stdenv.mkDerivation (finalAttrs: {
"prefix=${placeholder "out"}"
];
passthru.updateScript = nix-update-script { };
passthru.updateScript = nix-update-script {
extraArgs = [ "--version-regex=^R(.*)" ];
};
meta = {
homepage = "https://github.com/cktan/tomlc17";