nixpkgs/pkgs/applications/editors/hexedit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
641 B
Nix
Raw Normal View History

2022-07-11 10:30:39 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, ncurses }:
stdenv.mkDerivation rec {
pname = "hexedit";
2022-07-11 10:30:39 +00:00
version = "1.6";
2022-07-11 10:30:39 +00:00
src = fetchFromGitHub {
owner = "pixel";
repo = "hexedit";
rev = version;
sha256 = "sha256-fIgPbr7qmxyEga2YaAD0+NBM8LeDm/tVAq99ub7aiAI=";
};
2022-07-11 10:30:39 +00:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ ncurses ];
2022-07-11 10:30:39 +00:00
meta = with lib; {
description = "View and edit files in hexadecimal or in ASCII";
2022-07-11 10:30:39 +00:00
homepage = "http://rigaux.org/hexedit.html";
license = licenses.gpl2Plus;
platforms = platforms.unix;
2024-04-27 09:54:22 +00:00
maintainers = with maintainers; [ ];
2023-11-27 01:17:53 +00:00
mainProgram = "hexedit";
};
}