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

26 lines
550 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchFromGitHub }:
2017-11-12 18:31:09 +00:00
2021-01-15 09:19:50 +00:00
with lib;
2017-11-12 18:31:09 +00:00
stdenv.mkDerivation rec {
pname = "hexd";
2017-11-12 18:31:09 +00: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";
homepage = "https://github.com/FireyFly/hexd";
2017-11-12 18:31:09 +00:00
maintainers = [ maintainers.FireyFly ];
license = licenses.mit;
platforms = platforms.unix;
};
}