mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-24 02:46:43 +00:00
nix: Return to building with crane (#21292)
This removes .envrc, putting it into gitignore as well as building with crane, as it does not require an up to date hash for a FOD. Release Notes: - N/A cc @mrnugget @jaredramirez
This commit is contained in:
parent
73f546ea5f
commit
94faf9dd56
5 changed files with 193 additions and 182 deletions
2
.envrc
2
.envrc
|
@ -1,2 +0,0 @@
|
||||||
watch_file nix/shell.nix
|
|
||||||
use flake
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
||||||
/.direnv
|
/.direnv
|
||||||
|
.envrc
|
||||||
.idea
|
.idea
|
||||||
**/target
|
**/target
|
||||||
**/cargo-target
|
**/cargo-target
|
||||||
|
|
16
flake.lock
16
flake.lock
|
@ -1,5 +1,20 @@
|
||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
|
"crane": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1732407143,
|
||||||
|
"narHash": "sha256-qJOGDT6PACoX+GbNH2PPx2ievlmtT1NVeTB80EkRLys=",
|
||||||
|
"owner": "ipetkov",
|
||||||
|
"repo": "crane",
|
||||||
|
"rev": "f2b4b472983817021d9ffb60838b2b36b9376b20",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "ipetkov",
|
||||||
|
"repo": "crane",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"flake-compat": {
|
"flake-compat": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1696426674,
|
"lastModified": 1696426674,
|
||||||
|
@ -33,6 +48,7 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
|
"crane": "crane",
|
||||||
"flake-compat": "flake-compat",
|
"flake-compat": "flake-compat",
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"rust-overlay": "rust-overlay"
|
"rust-overlay": "rust-overlay"
|
||||||
|
|
14
flake.nix
14
flake.nix
|
@ -7,11 +7,17 @@
|
||||||
url = "github:oxalica/rust-overlay";
|
url = "github:oxalica/rust-overlay";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
crane.url = "github:ipetkov/crane";
|
||||||
flake-compat.url = "github:edolstra/flake-compat";
|
flake-compat.url = "github:edolstra/flake-compat";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
{ nixpkgs, rust-overlay, ... }:
|
{
|
||||||
|
nixpkgs,
|
||||||
|
rust-overlay,
|
||||||
|
crane,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
systems = [
|
systems = [
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
|
@ -27,10 +33,8 @@
|
||||||
};
|
};
|
||||||
zed-editor = final: prev: {
|
zed-editor = final: prev: {
|
||||||
zed-editor = final.callPackage ./nix/build.nix {
|
zed-editor = final.callPackage ./nix/build.nix {
|
||||||
rustPlatform = final.makeRustPlatform {
|
crane = crane.mkLib final;
|
||||||
cargo = final.rustToolchain;
|
rustToolchain = final.rustToolchain;
|
||||||
rustc = final.rustToolchain;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
114
nix/build.nix
114
nix/build.nix
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
rustPlatform,
|
crane,
|
||||||
|
rustToolchain,
|
||||||
fetchpatch,
|
fetchpatch,
|
||||||
clang,
|
clang,
|
||||||
cmake,
|
cmake,
|
||||||
|
@ -26,7 +27,6 @@
|
||||||
vulkan-loader,
|
vulkan-loader,
|
||||||
envsubst,
|
envsubst,
|
||||||
cargo-about,
|
cargo-about,
|
||||||
versionCheckHook,
|
|
||||||
cargo-bundle,
|
cargo-bundle,
|
||||||
git,
|
git,
|
||||||
apple-sdk_15,
|
apple-sdk_15,
|
||||||
|
@ -50,47 +50,19 @@ let
|
||||||
in
|
in
|
||||||
!(
|
!(
|
||||||
inRootDir
|
inRootDir
|
||||||
&& (
|
&& (baseName == "docs" || baseName == ".github" || baseName == ".git" || baseName == "target")
|
||||||
baseName == "docs"
|
|
||||||
|| baseName == ".github"
|
|
||||||
|| baseName == "script"
|
|
||||||
|| baseName == ".git"
|
|
||||||
|| baseName == "target"
|
|
||||||
)
|
|
||||||
);
|
);
|
||||||
in
|
craneLib = crane.overrideToolchain rustToolchain;
|
||||||
rustPlatform.buildRustPackage rec {
|
commonSrc = lib.cleanSourceWith {
|
||||||
pname = "zed-editor";
|
|
||||||
version = "nightly";
|
|
||||||
|
|
||||||
src = lib.cleanSourceWith {
|
|
||||||
src = nix-gitignore.gitignoreSource [ ] ../.;
|
src = nix-gitignore.gitignoreSource [ ] ../.;
|
||||||
filter = includeFilter;
|
filter = includeFilter;
|
||||||
name = "source";
|
name = "source";
|
||||||
};
|
};
|
||||||
|
commonArgs = rec {
|
||||||
|
pname = "zed-editor";
|
||||||
|
version = "nightly";
|
||||||
|
|
||||||
patches =
|
src = commonSrc;
|
||||||
[
|
|
||||||
# Zed uses cargo-install to install cargo-about during the script execution.
|
|
||||||
# We provide cargo-about ourselves and can skip this step.
|
|
||||||
# Until https://github.com/zed-industries/zed/issues/19971 is fixed,
|
|
||||||
# we also skip any crate for which the license cannot be determined.
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://raw.githubusercontent.com/NixOS/nixpkgs/1fd02d90c6c097f91349df35da62d36c19359ba7/pkgs/by-name/ze/zed-editor/0001-generate-licenses.patch";
|
|
||||||
hash = "sha256-cLgqLDXW1JtQ2OQFLd5UolAjfy7bMoTw40lEx2jA2pk=";
|
|
||||||
})
|
|
||||||
]
|
|
||||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
||||||
# Livekit requires Swift 6
|
|
||||||
# We need this until livekit-rust sdk is used
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://raw.githubusercontent.com/NixOS/nixpkgs/1fd02d90c6c097f91349df35da62d36c19359ba7/pkgs/by-name/ze/zed-editor/0002-disable-livekit-darwin.patch";
|
|
||||||
hash = "sha256-whZ7RaXv8hrVzWAveU3qiBnZSrvGNEHTuyNhxgMIo5w=";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
useFetchCargoVendor = true;
|
|
||||||
cargoHash = "sha256-KURM1W9UP65BU9gbvEBgQj3jwSYfQT7X18gcSmOMguI=";
|
|
||||||
|
|
||||||
nativeBuildInputs =
|
nativeBuildInputs =
|
||||||
[
|
[
|
||||||
|
@ -101,14 +73,11 @@ rustPlatform.buildRustPackage rec {
|
||||||
perl
|
perl
|
||||||
pkg-config
|
pkg-config
|
||||||
protobuf
|
protobuf
|
||||||
rustPlatform.bindgenHook
|
|
||||||
cargo-about
|
cargo-about
|
||||||
]
|
]
|
||||||
++ lib.optionals stdenv.hostPlatform.isLinux [ makeWrapper ]
|
++ lib.optionals stdenv.hostPlatform.isLinux [ makeWrapper ]
|
||||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ cargo-bundle ];
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ cargo-bundle ];
|
||||||
|
|
||||||
dontUseCmakeConfigure = true;
|
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[
|
[
|
||||||
curl
|
curl
|
||||||
|
@ -131,13 +100,6 @@ rustPlatform.buildRustPackage rec {
|
||||||
(darwinMinVersionHook "10.15")
|
(darwinMinVersionHook "10.15")
|
||||||
];
|
];
|
||||||
|
|
||||||
cargoBuildFlags = [
|
|
||||||
"--package=zed"
|
|
||||||
"--package=cli"
|
|
||||||
];
|
|
||||||
|
|
||||||
buildFeatures = lib.optionals stdenv.hostPlatform.isDarwin [ "gpui/runtime_shaders" ];
|
|
||||||
|
|
||||||
env = {
|
env = {
|
||||||
ZSTD_SYS_USE_PKG_CONFIG = true;
|
ZSTD_SYS_USE_PKG_CONFIG = true;
|
||||||
FONTCONFIG_FILE = makeFontsConf {
|
FONTCONFIG_FILE = makeFontsConf {
|
||||||
|
@ -149,10 +111,37 @@ rustPlatform.buildRustPackage rec {
|
||||||
ZED_UPDATE_EXPLANATION = "Zed has been installed using Nix. Auto-updates have thus been disabled.";
|
ZED_UPDATE_EXPLANATION = "Zed has been installed using Nix. Auto-updates have thus been disabled.";
|
||||||
RELEASE_VERSION = version;
|
RELEASE_VERSION = version;
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
cargoArtifacts = craneLib.buildDepsOnly commonArgs;
|
||||||
|
in
|
||||||
|
craneLib.buildPackage (
|
||||||
|
commonArgs
|
||||||
|
// rec {
|
||||||
|
inherit cargoArtifacts;
|
||||||
|
|
||||||
RUSTFLAGS = if withGLES then "--cfg gles" else "";
|
patches =
|
||||||
gpu-lib = if withGLES then libglvnd else vulkan-loader;
|
[
|
||||||
|
# Zed uses cargo-install to install cargo-about during the script execution.
|
||||||
|
# We provide cargo-about ourselves and can skip this step.
|
||||||
|
# Until https://github.com/zed-industries/zed/issues/19971 is fixed,
|
||||||
|
# we also skip any crate for which the license cannot be determined.
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://raw.githubusercontent.com/NixOS/nixpkgs/1fd02d90c6c097f91349df35da62d36c19359ba7/pkgs/by-name/ze/zed-editor/0001-generate-licenses.patch";
|
||||||
|
hash = "sha256-cLgqLDXW1JtQ2OQFLd5UolAjfy7bMoTw40lEx2jA2pk=";
|
||||||
|
})
|
||||||
|
]
|
||||||
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||||
|
# Livekit requires Swift 6
|
||||||
|
# We need this until livekit-rust sdk is used
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://raw.githubusercontent.com/NixOS/nixpkgs/1fd02d90c6c097f91349df35da62d36c19359ba7/pkgs/by-name/ze/zed-editor/0002-disable-livekit-darwin.patch";
|
||||||
|
hash = "sha256-whZ7RaXv8hrVzWAveU3qiBnZSrvGNEHTuyNhxgMIo5w=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
cargoExtraArgs = "--package=zed --package=cli --features=gpui/runtime_shaders";
|
||||||
|
|
||||||
|
dontUseCmakeConfigure = true;
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
bash script/generate-licenses
|
bash script/generate-licenses
|
||||||
'';
|
'';
|
||||||
|
@ -163,11 +152,16 @@ rustPlatform.buildRustPackage rec {
|
||||||
wrapProgram $out/libexec/zed-editor --suffix PATH : ${lib.makeBinPath [ nodejs_22 ]}
|
wrapProgram $out/libexec/zed-editor --suffix PATH : ${lib.makeBinPath [ nodejs_22 ]}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
RUSTFLAGS = if withGLES then "--cfg gles" else "";
|
||||||
|
gpu-lib = if withGLES then libglvnd else vulkan-loader;
|
||||||
|
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
export HOME=$(mktemp -d);
|
export HOME=$(mktemp -d);
|
||||||
'';
|
'';
|
||||||
|
|
||||||
checkFlags =
|
cargoTestExtraArgs =
|
||||||
|
"-- "
|
||||||
|
+ lib.concatStringsSep " " (
|
||||||
[
|
[
|
||||||
# Flaky: unreliably fails on certain hosts (including Hydra)
|
# Flaky: unreliably fails on certain hosts (including Hydra)
|
||||||
"--skip=zed::tests::test_window_edit_state_restoring_enabled"
|
"--skip=zed::tests::test_window_edit_state_restoring_enabled"
|
||||||
|
@ -175,7 +169,8 @@ rustPlatform.buildRustPackage rec {
|
||||||
++ lib.optionals stdenv.hostPlatform.isLinux [
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
||||||
# Fails on certain hosts (including Hydra) for unclear reason
|
# Fails on certain hosts (including Hydra) for unclear reason
|
||||||
"--skip=test_open_paths_action"
|
"--skip=test_open_paths_action"
|
||||||
];
|
]
|
||||||
|
);
|
||||||
|
|
||||||
installPhase =
|
installPhase =
|
||||||
if stdenv.hostPlatform.isDarwin then
|
if stdenv.hostPlatform.isDarwin then
|
||||||
|
@ -183,7 +178,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
|
|
||||||
# cargo-bundle expects the binary in target/release
|
# cargo-bundle expects the binary in target/release
|
||||||
mv target/${stdenv.hostPlatform.rust.cargoShortTarget}/release/zed target/release/zed
|
mv target/release/zed target/release/zed
|
||||||
|
|
||||||
pushd crates/zed
|
pushd crates/zed
|
||||||
|
|
||||||
|
@ -206,7 +201,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
mkdir -p $out/Applications $out/bin
|
mkdir -p $out/Applications $out/bin
|
||||||
# Zed expects git next to its own binary
|
# Zed expects git next to its own binary
|
||||||
ln -s ${git}/bin/git $app_path/Contents/MacOS/git
|
ln -s ${git}/bin/git $app_path/Contents/MacOS/git
|
||||||
mv target/${stdenv.hostPlatform.rust.cargoShortTarget}/release/cli $app_path/Contents/MacOS/cli
|
mv target/release/cli $app_path/Contents/MacOS/cli
|
||||||
mv $app_path $out/Applications/
|
mv $app_path $out/Applications/
|
||||||
|
|
||||||
# Physical location of the CLI must be inside the app bundle as this is used
|
# Physical location of the CLI must be inside the app bundle as this is used
|
||||||
|
@ -220,11 +215,11 @@ rustPlatform.buildRustPackage rec {
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
|
|
||||||
mkdir -p $out/bin $out/libexec
|
mkdir -p $out/bin $out/libexec
|
||||||
cp target/${stdenv.hostPlatform.rust.cargoShortTarget}/release/zed $out/libexec/zed-editor
|
cp target/release/zed $out/libexec/zed-editor
|
||||||
cp target/${stdenv.hostPlatform.rust.cargoShortTarget}/release/cli $out/bin/zed
|
cp target/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 ${commonSrc}/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
|
install -D ${commonSrc}/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)
|
# 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)
|
# and https://github.com/zed-industries/zed/blob/v0.141.2/script/install.sh (final desktop file name)
|
||||||
|
@ -241,10 +236,6 @@ rustPlatform.buildRustPackage rec {
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeInstallCheckInputs = [
|
|
||||||
versionCheckHook
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "High-performance, multiplayer code editor from the creators of Atom and Tree-sitter";
|
description = "High-performance, multiplayer code editor from the creators of Atom and Tree-sitter";
|
||||||
homepage = "https://zed.dev";
|
homepage = "https://zed.dev";
|
||||||
|
@ -254,3 +245,4 @@ rustPlatform.buildRustPackage rec {
|
||||||
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in a new issue