Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix140
1 files changed, 60 insertions, 80 deletions
diff --git a/flake.nix b/flake.nix
index 5672e62f..296a68d5 100644
--- a/flake.nix
+++ b/flake.nix
@@ -3,93 +3,73 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
- rust-overlay = {
- url = "github:oxalica/rust-overlay";
+ rust-overlay.url = "github:oxalica/rust-overlay";
+ nixCargoIntegration = {
+ url = "github:yusdacra/nix-cargo-integration";
inputs.nixpkgs.follows = "nixpkgs";
+ inputs.rustOverlay.follows = "rust-overlay";
+ };
+ flakeCompat = {
+ url = "github:edolstra/flake-compat";
+ flake = false;
};
};
- outputs = {
- self,
- nixpkgs,
- rust-overlay,
- ...
- }: let
- inherit (nixpkgs) lib;
- eachSystem = lib.genAttrs lib.systems.flakeExposed;
- pkgsFor = eachSystem (system:
- import nixpkgs {
- localSystem.system = system;
- overlays = [(import rust-overlay) self.overlays.helix];
- });
- gitRev = self.rev or self.dirtyRev or null;
- in {
- packages = eachSystem (system: {
- inherit (pkgsFor.${system}) helix;
- /*
- The default Helix build. Uses the latest stable Rust toolchain, and unstable
- nixpkgs.
-
- The build inputs can be overridden with the following:
-
- packages.${system}.default.override { rustPlatform = newPlatform; };
-
- Overriding a derivation attribute can be done as well:
-
- packages.${system}.default.overrideAttrs { buildType = "debug"; };
- */
- default = self.packages.${system}.helix;
- });
- checks =
- lib.mapAttrs (system: pkgs: let
- # Get Helix's MSRV toolchain to build with by default.
- msrvToolchain = pkgs.pkgsBuildHost.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
- msrvPlatform = pkgs.makeRustPlatform {
- cargo = msrvToolchain;
- rustc = msrvToolchain;
- };
- in {
- helix = self.packages.${system}.helix.override {
- rustPlatform = msrvPlatform;
+ outputs = inputs@{ self, nixCargoIntegration, ... }:
+ nixCargoIntegration.lib.makeOutputs {
+ root = ./.;
+ buildPlatform = "crate2nix";
+ renameOutputs = { "helix-term" = "helix"; };
+ # Set default app to hx (binary is from helix-term release build)
+ # Set default package to helix-term release build
+ defaultOutputs = { app = "hx"; package = "helix"; };
+ overrides = {
+ crateOverrides = common: _: {
+ helix-term = prev: {
+ # link languages and theme toml files since helix-term expects them (for tests)
+ preConfigure = "ln -s ${common.root}/{languages.toml,theme.toml} ..";
+ buildInputs = (prev.buildInputs or [ ]) ++ [ common.cCompiler.cc.lib ];
+ };
+ # link languages and theme toml files since helix-view expects them
+ helix-view = _: { preConfigure = "ln -s ${common.root}/{languages.toml,theme.toml} .."; };
+ helix-syntax = _prev: {
+ preConfigure = "mkdir -p ../runtime/grammars";
+ postInstall = "cp -r ../runtime $out/runtime";
+ };
};
- })
- pkgsFor;
-
- # Devshell behavior is preserved.
- devShells =
- lib.mapAttrs (system: pkgs: {
- default = let
- commonRustFlagsEnv = "-C link-arg=-fuse-ld=lld -C target-cpu=native --cfg tokio_unstable";
- platformRustFlagsEnv = lib.optionalString pkgs.stdenv.isLinux "-Clink-arg=-Wl,--no-rosegment";
- in
- pkgs.mkShell {
- inputsFrom = [self.checks.${system}.helix];
- nativeBuildInputs = with pkgs;
- [
- lld
- cargo-flamegraph
- rust-bin.nightly.latest.rust-analyzer
- ]
- ++ (lib.optional (stdenv.isx86_64 && stdenv.isLinux) cargo-tarpaulin)
- ++ (lib.optional stdenv.isLinux lldb);
- shellHook = ''
- export RUST_BACKTRACE="1"
- export RUSTFLAGS="''${RUSTFLAGS:-""} ${commonRustFlagsEnv} ${platformRustFlagsEnv}"
+ mainBuild = common: prev:
+ let
+ inherit (common) pkgs lib;
+ helixSyntax = lib.buildCrate {
+ root = self;
+ memberName = "helix-syntax";
+ defaultCrateOverrides = {
+ helix-syntax = common.crateOverrides.helix-syntax;
+ };
+ release = false;
+ };
+ runtimeDir = pkgs.runCommand "helix-runtime" { } ''
+ mkdir -p $out
+ ln -s ${common.root}/runtime/* $out
+ ln -sf ${helixSyntax}/runtime/grammars $out
+ '';
+ in
+ lib.optionalAttrs (common.memberName == "helix-term") {
+ nativeBuildInputs = [ pkgs.makeWrapper ];
+ postFixup = ''
+ if [ -f "$out/bin/hx" ]; then
+ wrapProgram "$out/bin/hx" --set HELIX_RUNTIME "${runtimeDir}"
+ fi
'';
};
- })
- pkgsFor;
-
- overlays = {
- helix = final: prev: {
- helix = final.callPackage ./default.nix {inherit gitRev;};
+ shell = common: prev: {
+ packages = prev.packages ++ (with common.pkgs; [ lld_12 lldb cargo-tarpaulin ]);
+ env = prev.env ++ [
+ { name = "HELIX_RUNTIME"; eval = "$PWD/runtime"; }
+ { name = "RUST_BACKTRACE"; value = "1"; }
+ { name = "RUSTFLAGS"; value = "-C link-arg=-fuse-ld=lld -C target-cpu=native"; }
+ ];
+ };
};
-
- default = self.overlays.helix;
};
- };
- nixConfig = {
- extra-substituters = ["https://helix.cachix.org"];
- extra-trusted-public-keys = ["helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="];
- };
}