2021-01-19 07:54:51 +01:00
|
|
|
{
|
|
|
|
description = "A post-modern text editor.";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
2022-03-03 02:45:45 +01:00
|
|
|
rust-overlay = {
|
|
|
|
url = "github:oxalica/rust-overlay";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2021-06-13 07:03:42 +02:00
|
|
|
nixCargoIntegration = {
|
|
|
|
url = "github:yusdacra/nix-cargo-integration";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2021-10-22 05:07:41 +02:00
|
|
|
inputs.rustOverlay.follows = "rust-overlay";
|
2021-06-13 07:03:42 +02:00
|
|
|
};
|
2022-03-08 06:14:00 +01:00
|
|
|
# NOTE: the flake looks like it is hanging when it pulls this input because
|
|
|
|
# the submodules take a long time to clone. This will be fixed in #1659.
|
|
|
|
helix = {
|
|
|
|
url = "https://github.com/helix-editor/helix.git";
|
|
|
|
type = "git";
|
|
|
|
submodules = true;
|
|
|
|
flake = false;
|
|
|
|
};
|
2021-01-19 07:54:51 +01:00
|
|
|
};
|
|
|
|
|
2022-03-08 06:14:00 +01:00
|
|
|
outputs = inputs@{ nixCargoIntegration, helix, ... }:
|
2021-06-13 07:03:42 +02:00
|
|
|
nixCargoIntegration.lib.makeOutputs {
|
|
|
|
root = ./.;
|
|
|
|
renameOutputs = { "helix-term" = "helix"; };
|
|
|
|
# Set default app to hx (binary is from helix-term release build)
|
|
|
|
# Set default package to helix-term release build
|
2022-03-08 06:14:00 +01:00
|
|
|
defaultOutputs = {
|
|
|
|
app = "hx";
|
|
|
|
package = "helix";
|
|
|
|
};
|
2021-06-13 07:03:42 +02:00
|
|
|
overrides = {
|
2022-01-13 01:40:07 +01:00
|
|
|
crateOverrides = common: _: rec {
|
2022-03-08 06:14:00 +01:00
|
|
|
helix-term = prev: {
|
2022-02-21 13:39:23 +01:00
|
|
|
# disable fetching and building of tree-sitter grammars in the helix-term build.rs
|
|
|
|
HELIX_DISABLE_AUTO_GRAMMAR_BUILD = "1";
|
2022-03-08 06:14:00 +01:00
|
|
|
buildInputs = (prev.buildInputs or [ ]) ++ [ common.cCompiler.cc.lib ];
|
|
|
|
nativeBuildInputs = (prev.nativeBuildInputs or [ ]) ++ [ common.pkgs.makeWrapper ];
|
|
|
|
preConfigure = ''
|
|
|
|
${prev.preConfigure}
|
|
|
|
rm -r helix-syntax/languages
|
|
|
|
ln -s ${helix}/helix-syntax/languages helix-syntax/languages
|
|
|
|
ln -s "$PWD/helix-syntax/languages" languages
|
|
|
|
mkdir -p runtime/grammars
|
|
|
|
'';
|
|
|
|
postInstall = ''
|
|
|
|
${prev.postInstall or ""}
|
|
|
|
mkdir -p $out/lib
|
|
|
|
cp -r runtime $out/lib
|
|
|
|
wrapProgram "$out/bin/hx" --set HELIX_RUNTIME "$out/lib/runtime"
|
|
|
|
'';
|
2021-07-24 20:36:35 +02:00
|
|
|
};
|
2022-01-13 01:40:07 +01:00
|
|
|
};
|
2021-06-13 07:03:42 +02:00
|
|
|
shell = common: prev: {
|
2022-01-03 08:20:46 +01:00
|
|
|
packages = prev.packages ++ (with common.pkgs; [ lld_13 lldb cargo-tarpaulin cargo-flamegraph ]);
|
2021-06-13 07:03:42 +02:00
|
|
|
env = prev.env ++ [
|
|
|
|
{ name = "HELIX_RUNTIME"; eval = "$PWD/runtime"; }
|
|
|
|
{ name = "RUST_BACKTRACE"; value = "1"; }
|
2022-01-12 14:27:44 +01:00
|
|
|
{ name = "RUSTFLAGS"; value = "-C link-arg=-fuse-ld=lld -C target-cpu=native -Clink-arg=-Wl,--no-rosegment"; }
|
2021-06-13 07:03:42 +02:00
|
|
|
];
|
2021-02-22 09:02:59 +01:00
|
|
|
};
|
2021-06-09 23:56:11 +02:00
|
|
|
};
|
2021-06-13 07:03:42 +02:00
|
|
|
};
|
2021-01-19 07:54:51 +01:00
|
|
|
}
|