1 { lib, stdenv, fetchurl, ncurses }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/bvi/${pname}-${version}.src.tar.gz";
9 sha256 = "sha256-S7oWwrSWljqbk5M2wKvMjUiGZEkggK5DqG2hjPTOlPI=";
12 buildInputs = [ ncurses ];
15 description = "Hex editor with vim style keybindings";
16 homepage = "https://bvi.sourceforge.net/download.html";
17 license = licenses.gpl2;
18 maintainers = with maintainers; [ pSub ];
19 platforms = with platforms; linux ++ darwin;