mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Fix flake package
This commit is contained in:
parent
1b14e9a19a
commit
1a774d61bb
2 changed files with 26 additions and 1 deletions
|
@ -6,6 +6,12 @@
|
|||
flake-utils.url = "github:numtide/flake-utils";
|
||||
rust-overlay.url = "github:oxalica/rust-overlay";
|
||||
naersk.url = "github:nmattia/naersk";
|
||||
helix = {
|
||||
flake = false;
|
||||
url = "https://github.com/helix-editor/helix";
|
||||
type = "git";
|
||||
submodules = true;
|
||||
};
|
||||
};
|
||||
|
||||
outputs = inputs@{ self, nixpkgs, naersk, rust-overlay, flake-utils, ... }:
|
||||
|
@ -25,7 +31,7 @@
|
|||
in rec {
|
||||
packages.helix = naerskLib.buildPackage {
|
||||
pname = "helix";
|
||||
root = ./.;
|
||||
root = inputs.helix;
|
||||
};
|
||||
defaultPackage = packages.helix;
|
||||
devShell = pkgs.callPackage ./shell.nix {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue