authoscope: refactor (#371250)
[NixPkgs.git] / pkgs / by-name / el / elfio / package.nix
blob886632cf0eb6e2c56e9094b01fd6cbe7926a1e02
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   cmake,
6   boost,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "elfio";
11   version = "3.10";
13   src = fetchFromGitHub {
14     owner = "serge1";
15     repo = "elfio";
16     rev = "Release_${version}";
17     sha256 = "sha256-DuZhkiHXdCplRiOy1Gsu7voVPdCbFt+4qFqlOeOeWQw=";
18   };
20   nativeBuildInputs = [ cmake ];
22   nativeCheckInputs = [ boost ];
24   cmakeFlags = [ "-DELFIO_BUILD_TESTS=ON" ];
26   doCheck = true;
28   meta = with lib; {
29     description = "Header-only C++ library for reading and generating files in the ELF binary format";
30     homepage = "https://github.com/serge1/ELFIO";
31     license = licenses.mit;
32     platforms = platforms.unix;
33     maintainers = with maintainers; [ prusnak ];
34   };