python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / hexd / default.nix
blobe3a3f79f32684a27e3e7ca1e9a2f936f46b5eb08
1 { lib, stdenv, fetchFromGitHub }:
3 with lib;
5 stdenv.mkDerivation rec {
6   pname = "hexd";
7   version = "1.1.0";
9   src = fetchFromGitHub {
10     owner = "FireyFly";
11     repo = "hexd";
12     rev = "v${version}";
13     sha256 = "sha256-b/dROBQVPEiMBTcu4MTi6Lf6ChkFZqZrJ1V0j54rrFY=";
14   };
16   makeFlags = [ "PREFIX=$(out)" ];
18   meta = {
19     description = "Colourful, human-friendly hexdump tool";
20     homepage = "https://github.com/FireyFly/hexd";
21     maintainers = [ maintainers.FireyFly ];
22     license = licenses.mit;
23     platforms = platforms.unix;
24   };