nixpkgs/pkgs/tools/misc/xv/default.nix

41 lines
1.3 KiB
Nix
Raw Normal View History

2019-05-28 02:34:35 +03:00
{ stdenv, lib, fetchFromGitHub, rustPlatform
, ncurses ? null
, darwin ? null }:
let useNcurses = !stdenv.hostPlatform.isWindows; in
assert useNcurses -> ncurses != null;
2019-04-24 01:45:59 +03:00
rustPlatform.buildRustPackage rec {
pname = "xv";
2019-05-28 02:34:35 +03:00
version = "0.1.1";
2019-04-24 01:45:59 +03:00
src = fetchFromGitHub {
owner = "chrisvest";
repo = pname;
rev = "${version}";
2019-05-28 02:34:35 +03:00
sha256 = "0x2yd21sr4wik3z22rknkx1fgb64j119ynjls919za8gd83zk81g";
2019-04-24 01:45:59 +03:00
};
2019-05-28 02:34:35 +03:00
cargoSha256 = "0m69pcmnx3c3q7lgvbhxc8dl6lavv5ch4r6wg2bhdmapcmb4p7jq";
buildInputs = lib.optionals useNcurses [ ncurses ]
++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Security ])
;
2019-04-24 01:45:59 +03:00
2019-05-28 02:34:35 +03:00
# I'm picking pancurses for Windows simply because that's the example given in Cursive's
# documentation for picking an alternative backend. We could just as easily pick crossterm.
cargoBuildFlags = lib.optionals (!useNcurses) [ "--no-default-features" "--features pancurses-backend" ];
2019-04-24 01:45:59 +03:00
2019-05-28 02:34:35 +03:00
meta = with lib; {
2019-04-24 01:45:59 +03:00
description = "A visual hex viewer for the terminal";
longDescription = ''
XV is a terminal hex viewer with a text user interface, written in 100% safe Rust.
'';
homepage = https://chrisvest.github.io/xv/;
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ lilyball ];
platforms = platforms.all;
};
}