Unverified Commit a97be149 authored by Konrad Malik's avatar Konrad Malik
Browse files

mise: 2025.4.1 -> 2025.4.11

parent 0f27c616
Loading
Loading
Loading
Loading
+13 −9
Original line number Diff line number Diff line
@@ -23,17 +23,17 @@

rustPlatform.buildRustPackage rec {
  pname = "mise";
  version = "2025.4.1";
  version = "2025.4.11";

  src = fetchFromGitHub {
    owner = "jdx";
    repo = "mise";
    rev = "v${version}";
    hash = "sha256-WEzf091KJbXTsyCNaz2QdiNklPZ3054jATGkl5Y+6lA=";
    hash = "sha256-qnVLVT+evB/gUxU8HQaOhT3imdtVN2Iwh+7ldx6NR6s=";
  };

  useFetchCargoVendor = true;
  cargoHash = "sha256-N04vcOJjx0GCKYXJCkQFQT4D8WWJsi62f3cdUW+4zMk=";
  cargoHash = "sha256-TBkU10eqNT5825QlDyeBUAw3CZXUGSu4ufoC5XrmJ04=";

  nativeBuildInputs = [
    installShellFiles
@@ -70,11 +70,15 @@ rustPlatform.buildRustPackage rec {

  nativeCheckInputs = [ cacert ];

  checkFlags = [
  checkFlags =
    [
      # last_modified will always be different in nix
      "--skip=tera::tests::test_last_modified"
    # requires https://github.com/rbenv/ruby-build
    "--skip=plugins::core::ruby::tests::test_list_versions_matching"
    ]
    ++ lib.optionals (stdenv.hostPlatform.system == "x86_64-darwin") [
      # started failing mid-April 2025
      "--skip=task::task_file_providers::remote_task_http::tests::test_http_remote_task_get_local_path_with_cache"
      "--skip=task::task_file_providers::remote_task_http::tests::test_http_remote_task_get_local_path_without_cache"
    ];

  cargoTestFlags = [ "--all-features" ];