python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / elfio / default.nix
blob5bf4f3a333086f8c3384dc02cd35c8b2a3db8e86
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , boost
6 }:
8 stdenv.mkDerivation rec {
9   pname = "elfio";
10   version = "3.10";
12   src = fetchFromGitHub {
13     owner = "serge1";
14     repo = "elfio";
15     rev = "Release_${version}";
16     sha256 = "sha256-DuZhkiHXdCplRiOy1Gsu7voVPdCbFt+4qFqlOeOeWQw=";
17   };
19   nativeBuildInputs = [ cmake ];
21   checkInputs = [ boost ];
23   cmakeFlags = [ "-DELFIO_BUILD_TESTS=ON" ];
25   doCheck = true;
27   meta = with lib; {
28     description = "Header-only C++ library for reading and generating files in the ELF binary format";
29     homepage = "https://github.com/serge1/ELFIO";
30     license = licenses.mit;
31     platforms = platforms.unix;
32     maintainers = with maintainers; [ prusnak ];
33   };