tart: 2.28.1 -> 2.28.6 (#442708)

authored by Arne Keller and committed by GitHub 53389b47 5f949b42

+12 -7
+12 -7
pkgs/by-name/ta/tart/package.nix
··· 9 9 # See https://github.com/cirruslabs/softnet#installing 10 10 enableSoftnet ? false, 11 11 softnet, 12 + nix-update-script, 13 + versionCheckHook, 12 14 }: 13 15 stdenvNoCC.mkDerivation (finalAttrs: { 14 16 pname = "tart"; 15 - version = "2.28.1"; 17 + version = "2.28.6"; 16 18 17 19 src = fetchurl { 18 20 url = "https://github.com/cirruslabs/tart/releases/download/${finalAttrs.version}/tart.tar.gz"; 19 - hash = "sha256-rV5hAJk46e9PAdEo8Qc6/17WqZ9aihj5+A1nLp3fJro="; 21 + hash = "sha256-F6bYWVHtzXo6TH4CAvdF6qx7OCVvKACsh2KdRYFsxOw="; 20 22 }; 21 23 sourceRoot = "."; 22 24 ··· 37 39 runHook postInstall 38 40 ''; 39 41 42 + nativeInstallCheckInputs = [ 43 + versionCheckHook 44 + ]; 45 + doInstallCheck = true; 46 + passthru.updateScript = nix-update-script { }; 47 + 40 48 meta = with lib; { 41 - description = "macOS VMs on Apple Silicon to use in CI and other automations"; 49 + description = "macOS and Linux VMs on Apple Silicon to use in CI and other automations"; 42 50 homepage = "https://tart.run"; 43 51 license = licenses.fairsource09; 44 52 maintainers = with maintainers; [ ··· 46 54 aduh95 47 55 ]; 48 56 mainProgram = "tart"; 49 - platforms = [ 50 - "aarch64-darwin" 51 - "x86_64-darwin" 52 - ]; 57 + platforms = platforms.darwin; 53 58 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 54 59 }; 55 60 })