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