tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
tart: 2.28.1 -> 2.28.6
Antoine du Hamel
4 months ago
d0607f50
6d7ec06d
+12
-7
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ta
tart
package.nix
+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
12
+
nix-update-script,
13
13
+
versionCheckHook,
12
14
}:
13
15
stdenvNoCC.mkDerivation (finalAttrs: {
14
16
pname = "tart";
15
15
-
version = "2.28.1";
17
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
19
-
hash = "sha256-rV5hAJk46e9PAdEo8Qc6/17WqZ9aihj5+A1nLp3fJro=";
21
21
+
hash = "sha256-F6bYWVHtzXo6TH4CAvdF6qx7OCVvKACsh2KdRYFsxOw=";
20
22
};
21
23
sourceRoot = ".";
22
24
···
37
39
runHook postInstall
38
40
'';
39
41
42
42
+
nativeInstallCheckInputs = [
43
43
+
versionCheckHook
44
44
+
];
45
45
+
doInstallCheck = true;
46
46
+
passthru.updateScript = nix-update-script { };
47
47
+
40
48
meta = with lib; {
41
41
-
description = "macOS VMs on Apple Silicon to use in CI and other automations";
49
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
49
-
platforms = [
50
50
-
"aarch64-darwin"
51
51
-
"x86_64-darwin"
52
52
-
];
57
57
+
platforms = platforms.darwin;
53
58
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
54
59
};
55
60
})