nixpkgs/pkgs/misc/urbit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.2 KiB
Nix
Raw Normal View History

2023-02-17 04:46:04 +03:00
{ stdenv
, lib
, fetchzip
2018-08-05 21:03:55 +03:00
}:
2023-02-17 04:46:04 +03:00
let
os = if stdenv.isDarwin then "macos" else "linux";
arch = if stdenv.isAarch64 then "aarch64" else "x86_64";
platform = "${os}-${arch}";
in
stdenv.mkDerivation rec {
pname = "urbit";
2024-03-12 13:42:23 +03:00
version = "3.0";
2023-02-17 04:46:04 +03:00
src = fetchzip {
url = "https://github.com/urbit/vere/releases/download/vere-v${version}/${platform}.tgz";
sha256 = {
2024-03-12 13:42:23 +03:00
x86_64-linux = "sha256-ip35d9YgwFEkNb+1h+8WYBgUm+QlckvHhlAT69TpeYg=";
aarch64-linux = "sha256-3TkK9YyFtEMpRjG/iKvxctD8pYRh0bWgH+3QWh++r5U=";
x86_64-darwin = "sha256-bvDZBSQmsXmJA2ZekWPr6krB0KzCFFly8KUqT5mVK1A=";
aarch64-darwin = "sha256-UybuCXpE/xwg4YmR3rpZiFTs1KQYAttpEjF/Fz+UD00=";
2023-02-17 04:46:04 +03:00
}.${stdenv.hostPlatform.system} or (throw "unsupported system ${stdenv.hostPlatform.system}");
};
2023-02-17 04:46:04 +03:00
postInstall = ''
install -m755 -D vere-v${version}-${platform} $out/bin/urbit
'';
2023-02-17 04:46:04 +03:00
passthru.updateScript = ./update-bin.sh;
meta = with lib; {
homepage = "https://urbit.org";
2023-02-17 04:46:04 +03:00
description = "Operating function";
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
maintainers = [ maintainers.matthew-levan ];
license = licenses.mit;
2023-05-15 17:45:00 +03:00
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
2023-11-24 00:09:35 +03:00
mainProgram = "urbit";
};
}