feat: watch: try pager mode..

This commit is contained in:
2025-04-04 02:09:43 +00:00
parent d800266fe0
commit c5e9d9c8cb
8 changed files with 6363 additions and 202 deletions

View File

@@ -1,10 +1,10 @@
{ stdenv, gcc, lib, hectic, bash }:
{ stdenv, gcc, lib, bash, gdb }:
stdenv.mkDerivation {
pname = "watch";
version = "1.0";
src = ./.;
doCheck = true;
doCheck = false;
nativeBuildInputs = [ gcc gdb ];
@@ -17,10 +17,8 @@ stdenv.mkDerivation {
'';
installPhase = ''
mkdir -p $out/bin $out/lib $out/include
cp target/hmpl $out/bin/hmpl
cp target/libhmpl.a $out/lib/
cp hmpl.h $out/include/hmpl.h
mkdir -p $out/bin
cp target/watch $out/bin/watch
'';
meta = {