about summary refs log tree commit diff
path: root/pkgs/applications/editors/hexdino/default.nix
blob: ef3635aa8d296d24e06d401a90d5725bf5aed395 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchFromGitHub, rustPlatform, ncurses }:
rustPlatform.buildRustPackage rec {
  name = "hexdino-${version}";
  version = "0.1.0";

  src = fetchFromGitHub {
    owner = "Luz";
    repo = "hexdino";
    rev = "de5b5d7042129f57e0ab36416a06476126bce389";
    sha256 = "11mz07735gxqfamjcjjmxya6swlvr1p77sgd377zjcmd6z54gwyf";
  };

  cargoSha256 = "0qa8ypp5a7sf1gic482zh3i6s94w6k6bgmk5ynfvwi7g49ql7c4z";
  verifyCargoDeps = true;

  buildInputs = [ ncurses ];

  meta = with stdenv.lib; {
    description = "A hex editor with vim like keybindings written in Rust";
    homepage = https://github.com/Luz/hexdino;
    license = licenses.mit;
    maintainers = [ maintainers.luz ];
    platforms = platforms.all;
  };
}