2021-01-15 01:19:50 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2017-11-12 10:31:09 -08:00
|
|
|
|
2021-01-15 01:19:50 -08:00
|
|
|
with lib;
|
2017-11-12 10:31:09 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "hexd";
|
2017-11-12 10:31:09 -08:00
|
|
|
version = "1.0.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "FireyFly";
|
|
|
|
repo = "hexd";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1lm0mj5c71id5kpqar8n44023s1kymb3q45nsz0hjh9v7p8libp0";
|
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Colourful, human-friendly hexdump tool";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/FireyFly/hexd";
|
2017-11-12 10:31:09 -08:00
|
|
|
maintainers = [ maintainers.FireyFly ];
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|