2021-01-19 15:54:51 +09:00
|
|
|
{
|
|
|
|
description = "A post-modern text editor.";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
2022-03-02 19:45:45 -06:00
|
|
|
rust-overlay = {
|
|
|
|
url = "github:oxalica/rust-overlay";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2021-06-13 08:03:42 +03:00
|
|
|
nixCargoIntegration = {
|
|
|
|
url = "github:yusdacra/nix-cargo-integration";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2021-10-22 12:07:41 +09:00
|
|
|
inputs.rustOverlay.follows = "rust-overlay";
|
2021-06-13 08:03:42 +03:00
|
|
|
};
|
2021-01-19 15:54:51 +09:00
|
|
|
};
|
|
|
|
|
2022-03-09 08:34:52 -06:00
|
|
|
outputs = inputs@{ nixCargoIntegration, ... }:
|
2021-06-13 08:03:42 +03: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-07 23:14:00 -06:00
|
|
|
defaultOutputs = {
|
|
|
|
app = "hx";
|
|
|
|
package = "helix";
|
|
|
|
};
|
2021-06-13 08:03:42 +03:00
|
|
|
overrides = {
|
2022-05-04 00:32:44 +02:00
|
|
|
cCompiler = common: if common.pkgs.stdenv.isLinux then common.pkgs.gcc else common.pkgs.clang;
|
2022-02-14 21:50:08 -06:00
|
|
|
crateOverrides = common: _: {
|
|
|
|
helix-term = prev:
|
|
|
|
let
|
|
|
|
inherit (common) pkgs;
|
|
|
|
grammars = pkgs.callPackage ./grammars.nix { };
|
|
|
|
runtimeDir = pkgs.runCommand "helix-runtime" { } ''
|
|
|
|
mkdir -p $out
|
|
|
|
ln -s ${common.root}/runtime/* $out
|
|
|
|
rm -r $out/grammars
|
|
|
|
ln -s ${grammars} $out/grammars
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
{
|
|
|
|
# disable fetching and building of tree-sitter grammars in the helix-term build.rs
|
|
|
|
HELIX_DISABLE_AUTO_GRAMMAR_BUILD = "1";
|
|
|
|
# link languages and theme toml files since helix-term expects them (for tests)
|
|
|
|
preConfigure = "ln -s ${common.root}/{languages.toml,theme.toml,base16_theme.toml} ..";
|
|
|
|
buildInputs = (prev.buildInputs or [ ]) ++ [ common.cCompiler.cc.lib ];
|
|
|
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
if [ -f "$out/bin/hx" ]; then
|
|
|
|
wrapProgram "$out/bin/hx" --set HELIX_RUNTIME "${runtimeDir}"
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
};
|
2022-01-12 16:40:07 -08:00
|
|
|
};
|
2021-06-13 08:03:42 +03:00
|
|
|
shell = common: prev: {
|
2022-01-03 16:20:46 +09:00
|
|
|
packages = prev.packages ++ (with common.pkgs; [ lld_13 lldb cargo-tarpaulin cargo-flamegraph ]);
|
2021-06-13 08:03:42 +03:00
|
|
|
env = prev.env ++ [
|
|
|
|
{ name = "HELIX_RUNTIME"; eval = "$PWD/runtime"; }
|
|
|
|
{ name = "RUST_BACKTRACE"; value = "1"; }
|
2022-05-04 00:32:44 +02:00
|
|
|
{ name = "RUSTFLAGS"; value = if common.pkgs.stdenv.isLinux then "-C link-arg=-fuse-ld=lld -C target-cpu=native -Clink-arg=-Wl,--no-rosegment" else ""; }
|
2021-06-13 08:03:42 +03:00
|
|
|
];
|
2021-02-22 17:02:59 +09:00
|
|
|
};
|
2021-06-09 15:56:11 -06:00
|
|
|
};
|
2021-06-13 08:03:42 +03:00
|
|
|
};
|
2021-01-19 15:54:51 +09:00
|
|
|
}
|