2025-06-26 20:46:31 +02:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
pkgs,
|
|
|
|
}: let
|
2025-06-04 08:26:52 +02:00
|
|
|
inherit (pkgs) lib;
|
2025-06-26 20:46:31 +02:00
|
|
|
helix = let
|
|
|
|
latestNightly = (inputs.rust-overlay.lib.mkRustBin {} pkgs).nightly.latest.default;
|
|
|
|
rustPlatform = pkgs.makeRustPlatform {
|
|
|
|
rustc = latestNightly;
|
|
|
|
cargo = latestNightly;
|
|
|
|
stdenv = pkgs.clangStdenv;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
pkgs.callPackage ./helix {inherit rustPlatform;};
|
2025-03-12 18:49:01 +01:00
|
|
|
kakoune = pkgs.callPackage ./kakoune.nix {};
|
2025-06-07 17:32:30 +02:00
|
|
|
fish = pkgs.callPackage ./fish {inherit lib;};
|
2025-03-03 15:43:20 +01:00
|
|
|
in {
|
2025-06-07 17:32:30 +02:00
|
|
|
inherit kakoune fish helix;
|
2025-03-03 15:43:20 +01:00
|
|
|
}
|