A hex editor with vim like keybindings written in Rust.
Shell
sudo apt install libncursesw5-dev cargo
cargo build
Create default.nix
Shell
with import <nixpkgs> {}; {
hexdinoEnv = stdenv.mkDerivation {
name = "hexdino";
buildInputs = [ stdenv ncurses pkgconfig ];
};
}
Then build with cargo
Shell
nix-shell . --command "cargo build"