tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
urbit: 2.12 -> 3.0
R. Ryantm
2 years ago
52cc0835
a07fe6ba
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
misc
urbit
default.nix
+5
-5
pkgs/misc/urbit/default.nix
···
10
10
in
11
11
stdenv.mkDerivation rec {
12
12
pname = "urbit";
13
13
-
version = "2.12";
13
13
+
version = "3.0";
14
14
15
15
src = fetchzip {
16
16
url = "https://github.com/urbit/vere/releases/download/vere-v${version}/${platform}.tgz";
17
17
sha256 = {
18
18
-
x86_64-linux = "sha256-N8RYlafw0HcmtGAQMKQb1cG7AivOpWS/5rU8CESJWAw=";
19
19
-
aarch64-linux = "sha256-RsBtwxSdqHVXMk7or1nPAFWd6Ypa0SqjpTihv8riyk4=";
20
20
-
x86_64-darwin = "sha256-/QPI66/gl3mlQHc+8zrEyP4/Hv5vwXlEx1cW2mP33IY=";
21
21
-
aarch64-darwin = "sha256-+2DYohaBxVcR1ZOjuk6GWcNpzb6aJMXq6BxwWw1OeIY=";
18
18
+
x86_64-linux = "sha256-ip35d9YgwFEkNb+1h+8WYBgUm+QlckvHhlAT69TpeYg=";
19
19
+
aarch64-linux = "sha256-3TkK9YyFtEMpRjG/iKvxctD8pYRh0bWgH+3QWh++r5U=";
20
20
+
x86_64-darwin = "sha256-bvDZBSQmsXmJA2ZekWPr6krB0KzCFFly8KUqT5mVK1A=";
21
21
+
aarch64-darwin = "sha256-UybuCXpE/xwg4YmR3rpZiFTs1KQYAttpEjF/Fz+UD00=";
22
22
}.${stdenv.hostPlatform.system} or (throw "unsupported system ${stdenv.hostPlatform.system}");
23
23
};
24
24