Unverified Commit 34a67478 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

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

parents c7642b9c 03f747e2
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -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";