mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
flake: use builtins.fetchTree to shallow-clone grammar repos
Here we perform a shallow fetch using builtins.fetchTree. In order to make this work, we need to specify the `ref' for any repository that doesn't have `master' as its default branch (I'm not sure why this limitation exists since we don't need this when performing the shallow fetch in `--grammar build') This `ref' field is ignored by helix, so I have left it undocumented for now, but I could be open to documenting it.
This commit is contained in:
parent
7044d7d804
commit
e01c53551d
4 changed files with 22 additions and 47 deletions
10
flake.nix
10
flake.nix
|
@ -12,17 +12,9 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.rustOverlay.follows = "rust-overlay";
|
||||
};
|
||||
# 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;
|
||||
};
|
||||
};
|
||||
|
||||
outputs = inputs@{ nixCargoIntegration, helix, ... }:
|
||||
outputs = inputs@{ nixCargoIntegration, ... }:
|
||||
nixCargoIntegration.lib.makeOutputs {
|
||||
root = ./.;
|
||||
renameOutputs = { "helix-term" = "helix"; };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue