mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
270 lines
7.3 KiB
Nix
270 lines
7.3 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
clang,
|
|
copyDesktopItems,
|
|
curl,
|
|
perl,
|
|
pkg-config,
|
|
protobuf,
|
|
xcbuild,
|
|
fontconfig,
|
|
freetype,
|
|
libgit2,
|
|
openssl,
|
|
sqlite,
|
|
zlib,
|
|
zstd,
|
|
alsa-lib,
|
|
libxkbcommon,
|
|
wayland,
|
|
libglvnd,
|
|
xorg,
|
|
stdenv,
|
|
darwin,
|
|
makeFontsConf,
|
|
vulkan-loader,
|
|
envsubst,
|
|
nix-update-script,
|
|
cargo-about,
|
|
testers,
|
|
zed-editor,
|
|
buildFHSEnv,
|
|
|
|
withGLES ? false,
|
|
}:
|
|
|
|
assert withGLES -> stdenv.isLinux;
|
|
|
|
let
|
|
executableName = "zed";
|
|
# Based on vscode.fhs
|
|
# Zed allows for users to download and use extensions
|
|
# which often include the usage of pre-built binaries.
|
|
# See #309662
|
|
#
|
|
# buildFHSEnv allows for users to use the existing Zed
|
|
# extension tooling without significant pain.
|
|
fhs =
|
|
{
|
|
additionalPkgs ? pkgs: [ ],
|
|
}:
|
|
buildFHSEnv {
|
|
# also determines the name of the wrapped command
|
|
name = executableName;
|
|
|
|
# additional libraries which are commonly needed for extensions
|
|
targetPkgs =
|
|
pkgs:
|
|
(with pkgs; [
|
|
# ld-linux-x86-64-linux.so.2 and others
|
|
glibc
|
|
])
|
|
++ additionalPkgs pkgs;
|
|
|
|
# symlink shared assets, including icons and desktop entries
|
|
extraInstallCommands = ''
|
|
ln -s "${zed-editor}/share" "$out/"
|
|
'';
|
|
|
|
runScript = "${zed-editor}/bin/${executableName}";
|
|
|
|
passthru = {
|
|
inherit executableName;
|
|
inherit (zed-editor) pname version;
|
|
};
|
|
|
|
meta = zed-editor.meta // {
|
|
description = ''
|
|
Wrapped variant of ${zed-editor.pname} which launches in a FHS compatible environment.
|
|
Should allow for easy usage of extensions without nix-specific modifications.
|
|
'';
|
|
};
|
|
};
|
|
in
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "zed";
|
|
version = "0.153.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zed-industries";
|
|
repo = "zed";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-8yu1xAN8GQXWXF4PHRbOx4oWK3EYc4POQlOYaDiPH+A=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
patches = [
|
|
# Zed uses cargo-install to install cargo-about during the script execution.
|
|
# We provide cargo-about ourselves and can skip this step.
|
|
./0001-generate-licenses.patch
|
|
];
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"alacritty_terminal-0.24.1-dev" = "sha256-b4oSDhsAAYjpYGfFgA1Q1642JoJQ9k5RTsPgFUpAFmc=";
|
|
"async-pipe-0.1.3" = "sha256-g120X88HGT8P6GNCrzpS5SutALx5H+45Sf4iSSxzctE=";
|
|
"blade-graphics-0.5.0" = "sha256-j/JI34ZPD7RAHNHu3krgDLnIq4QmmZaZaU1FwD7f2FM=";
|
|
"cosmic-text-0.11.2" = "sha256-TLPDnqixuW+aPAhiBhSvuZIa69vgV3xLcw32OlkdCcM=";
|
|
"font-kit-0.14.1" = "sha256-qUKvmi+RDoyhMrZ7T6SoVAyMc/aasQ9Y/okzre4SzXo=";
|
|
"lsp-types-0.95.1" = "sha256-N4MKoU9j1p/Xeowki/+XiNQPwIcTm9DgmfM/Eieq4js=";
|
|
"nvim-rs-0.8.0-pre" = "sha256-VA8zIynflul1YKBlSxGCXCwa2Hz0pT3mH6OPsfS7Izo=";
|
|
"tree-sitter-0.22.6" = "sha256-P9pQcofDCIhOYWA1OC8TzB5UgWpD5GlDzX2DOS8SsH0=";
|
|
"tree-sitter-gomod-1.0.2" = "sha256-/sjC117YAFniFws4F/8+Q5Wrd4l4v4nBUaO9IdkixSE=";
|
|
"tree-sitter-gowork-0.0.1" = "sha256-803ujH5qwejQ2vQDDpma4JDC9a+vFX8ZQmr+77VyL2M=";
|
|
"tree-sitter-heex-0.0.1" = "sha256-VakMZtWQ/h7dNy5ehk2Bh14a5s878AUgwY3Ipq8tPec=";
|
|
"tree-sitter-md-0.2.3" = "sha256-Fa73P1h5GvKV3SxXr0KzHuNp4xa5wxUzI8ecXbGdrYE=";
|
|
"xim-0.4.0" = "sha256-vxu3tjkzGeoRUj7vyP0vDGI7fweX8Drgy9hwOUOEQIA=";
|
|
"xkbcommon-0.7.0" = "sha256-2RjZWiAaz8apYTrZ82qqH4Gv20WyCtPT+ldOzm0GWMo=";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
clang
|
|
copyDesktopItems
|
|
curl
|
|
perl
|
|
pkg-config
|
|
protobuf
|
|
rustPlatform.bindgenHook
|
|
cargo-about
|
|
] ++ lib.optionals stdenv.isDarwin [ xcbuild.xcrun ];
|
|
|
|
buildInputs =
|
|
[
|
|
curl
|
|
fontconfig
|
|
freetype
|
|
libgit2
|
|
openssl
|
|
sqlite
|
|
zlib
|
|
zstd
|
|
]
|
|
++ lib.optionals stdenv.isLinux [
|
|
alsa-lib
|
|
libxkbcommon
|
|
wayland
|
|
xorg.libxcb
|
|
]
|
|
++ lib.optionals stdenv.isDarwin (
|
|
with darwin.apple_sdk.frameworks;
|
|
[
|
|
AppKit
|
|
CoreAudio
|
|
CoreFoundation
|
|
CoreGraphics
|
|
CoreMedia
|
|
CoreServices
|
|
CoreText
|
|
Foundation
|
|
IOKit
|
|
Metal
|
|
Security
|
|
SystemConfiguration
|
|
VideoToolbox
|
|
]
|
|
);
|
|
|
|
cargoBuildFlags = [
|
|
"--package=zed"
|
|
"--package=cli"
|
|
];
|
|
buildFeatures = [ "gpui/runtime_shaders" ];
|
|
|
|
env = {
|
|
ZSTD_SYS_USE_PKG_CONFIG = true;
|
|
FONTCONFIG_FILE = makeFontsConf {
|
|
fontDirectories = [
|
|
"${src}/assets/fonts/plex-mono"
|
|
"${src}/assets/fonts/plex-sans"
|
|
];
|
|
};
|
|
# Setting this environment variable allows to disable auto-updates
|
|
# https://zed.dev/docs/development/linux#notes-for-packaging-zed
|
|
ZED_UPDATE_EXPLANATION = "zed has been installed using nix. Auto-updates have thus been disabled.";
|
|
# Used by `zed --version`
|
|
RELEASE_VERSION = version;
|
|
};
|
|
|
|
RUSTFLAGS = if withGLES then "--cfg gles" else "";
|
|
gpu-lib = if withGLES then libglvnd else vulkan-loader;
|
|
|
|
preBuild = ''
|
|
bash script/generate-licenses
|
|
'';
|
|
|
|
postFixup = lib.optionalString stdenv.isLinux ''
|
|
patchelf --add-rpath ${gpu-lib}/lib $out/libexec/*
|
|
patchelf --add-rpath ${wayland}/lib $out/libexec/*
|
|
'';
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d);
|
|
'';
|
|
|
|
checkFlags = lib.optionals stdenv.hostPlatform.isLinux [
|
|
# Fails on certain hosts (including Hydra) for unclear reason
|
|
"--skip=test_open_paths_action"
|
|
|
|
# Flaky: unreliably fails on certain hosts (including Hydra)
|
|
"--skip=zed::tests::test_window_edit_state_restoring_enabled"
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin $out/libexec
|
|
cp target/${stdenv.hostPlatform.rust.cargoShortTarget}/release/zed $out/libexec/zed-editor
|
|
cp target/${stdenv.hostPlatform.rust.cargoShortTarget}/release/cli $out/bin/zed
|
|
|
|
install -D ${src}/crates/zed/resources/app-icon@2x.png $out/share/icons/hicolor/1024x1024@2x/apps/zed.png
|
|
install -D ${src}/crates/zed/resources/app-icon.png $out/share/icons/hicolor/512x512/apps/zed.png
|
|
|
|
# extracted from https://github.com/zed-industries/zed/blob/v0.141.2/script/bundle-linux (envsubst)
|
|
# and https://github.com/zed-industries/zed/blob/v0.141.2/script/install.sh (final desktop file name)
|
|
(
|
|
export DO_STARTUP_NOTIFY="true"
|
|
export APP_CLI="zed"
|
|
export APP_ICON="zed"
|
|
export APP_NAME="Zed"
|
|
export APP_ARGS="%U"
|
|
mkdir -p "$out/share/applications"
|
|
${lib.getExe envsubst} < "crates/zed/resources/zed.desktop.in" > "$out/share/applications/dev.zed.Zed.desktop"
|
|
)
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script {
|
|
extraArgs = [
|
|
"--version-regex"
|
|
"v(.*)"
|
|
];
|
|
};
|
|
tests.version = testers.testVersion {
|
|
inherit version;
|
|
package = zed-editor;
|
|
};
|
|
fhs = fhs { };
|
|
fhsWithPackages = f: fhs { additionalPkgs = f; };
|
|
};
|
|
|
|
meta = {
|
|
description = "High-performance, multiplayer code editor from the creators of Atom and Tree-sitter";
|
|
homepage = "https://zed.dev";
|
|
changelog = "https://github.com/zed-industries/zed/releases/tag/v${version}";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [
|
|
GaetanLepage
|
|
niklaskorz
|
|
];
|
|
mainProgram = "zed";
|
|
platforms = lib.platforms.all;
|
|
# Currently broken on darwin: https://github.com/NixOS/nixpkgs/pull/303233#issuecomment-2048650618
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|