Skip to content

Commit

Permalink
add signal lib for events. event to reset selection after commands
Browse files Browse the repository at this point in the history
  • Loading branch information
faldor20 committed Sep 30, 2024
1 parent a529037 commit 265a2b2
Show file tree
Hide file tree
Showing 13 changed files with 707 additions and 534 deletions.
43 changes: 34 additions & 9 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -130,15 +130,18 @@
version = "0.5.0";
duneVersion = "3";
src = picos_src;
buildInputs = with ocamlPackages;picos_io.buildInputs ++[
picos
picos_aux
picos_std
picos_io
backoff
multicore-magic
thread-local-storage
];
buildInputs =
with ocamlPackages;
picos_io.buildInputs
++ [
picos
picos_aux
picos_std
picos_io
backoff
multicore-magic
thread-local-storage
];

strictDeps = true;
};
Expand Down Expand Up @@ -168,7 +171,25 @@
];

strictDeps = true;

};

signal = ocamlPackages.buildDunePackage {
pname = "signal";
version = "0.4.2";
duneVersion = "3";
src = pkgs.fetchFromGitHub {
owner = "rizo";
repo = "signal";
rev = "704fefe7cd7b59e234a51bb470c7a3254468b5a8";
sha256 = "sha256-AcphzD/4rrWnsVB5ebXzdthQ1Rrw3xXkv4n5ZHosoz0=";
};
buildInputs = with ocamlPackages; [

];
strictDeps = true;
};

lwd = ocamlPackages.buildDunePackage {
pname = "lwd";
version = "0.1.0";
Expand All @@ -195,6 +216,7 @@
duneVersion = "3";
src = ./forks/nottui/.;
buildInputs = with ocamlPackages; [
signal
lwd
notty-mine
seq
Expand All @@ -218,6 +240,7 @@

strictDeps = true;
};

jj_tui_build_pkgs =

picos.buildInputs
Expand All @@ -235,6 +258,8 @@

picos_aux

signal

ocamlPackages.logs
ocamlPackages.logs-ppx

Expand Down
2 changes: 1 addition & 1 deletion forks/nottui/lib/nottui/dune
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
(name nottui)
(public_name nottui)
(wrapped true)
(libraries lwd notty notty.unix)
(libraries lwd notty notty.unix signal)
)
Loading

0 comments on commit 265a2b2

Please sign in to comment.