mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Closer to a full flake build via naersk.
Blocked on https://github.com/NixOS/nix/issues/4423, build doesn't see submodules.
This commit is contained in:
parent
3038c2ef6d
commit
b6a22e955b
5 changed files with 65 additions and 64 deletions
11
flake.nix
11
flake.nix
|
@ -12,8 +12,15 @@
|
|||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
pkgs = import nixpkgs { inherit system; overlays = [ rust-overlay.overlay ]; };
|
||||
naerskLib = pkgs.callPackage naersk {
|
||||
inherit (pkgs.rust-bin.stable.latest.default) rustc cargo;
|
||||
rust = (pkgs.rustChannelOf {
|
||||
date = "2021-05-01";
|
||||
channel = "nightly";
|
||||
}).minimal; # cargo, rustc and rust-std
|
||||
naerskLib = naersk.lib."${system}".override {
|
||||
# naersk can't build with stable?!
|
||||
# inherit (pkgs.rust-bin.stable.latest) rustc cargo;
|
||||
rustc = rust;
|
||||
cargo = rust;
|
||||
};
|
||||
in rec {
|
||||
packages.helix = naerskLib.buildPackage {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue