mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-25 01:34:02 +00:00
94faf9dd56
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
67 lines
1.7 KiB
Nix
67 lines
1.7 KiB
Nix
{
|
|
description = "High-performance, multiplayer code editor from the creators of Atom and Tree-sitter";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
|
|
rust-overlay = {
|
|
url = "github:oxalica/rust-overlay";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
crane.url = "github:ipetkov/crane";
|
|
flake-compat.url = "github:edolstra/flake-compat";
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
nixpkgs,
|
|
rust-overlay,
|
|
crane,
|
|
...
|
|
}:
|
|
let
|
|
systems = [
|
|
"x86_64-linux"
|
|
"x86_64-darwin"
|
|
"aarch64-linux"
|
|
"aarch64-darwin"
|
|
];
|
|
|
|
overlays = {
|
|
rust-overlay = rust-overlay.overlays.default;
|
|
rust-toolchain = final: prev: {
|
|
rustToolchain = final.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
|
|
};
|
|
zed-editor = final: prev: {
|
|
zed-editor = final.callPackage ./nix/build.nix {
|
|
crane = crane.mkLib final;
|
|
rustToolchain = final.rustToolchain;
|
|
};
|
|
};
|
|
};
|
|
|
|
mkPkgs =
|
|
system:
|
|
import nixpkgs {
|
|
inherit system;
|
|
overlays = builtins.attrValues overlays;
|
|
};
|
|
|
|
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f (mkPkgs system));
|
|
in
|
|
{
|
|
packages = forAllSystems (pkgs: {
|
|
zed-editor = pkgs.zed-editor;
|
|
default = pkgs.zed-editor;
|
|
});
|
|
|
|
devShells = forAllSystems (pkgs: {
|
|
default = import ./nix/shell.nix { inherit pkgs; };
|
|
});
|
|
|
|
formatter = forAllSystems (pkgs: pkgs.nixfmt-rfc-style);
|
|
|
|
overlays = overlays // {
|
|
default = nixpkgs.lib.composeManyExtensions (builtins.attrValues overlays);
|
|
};
|
|
};
|
|
}
|