8 stdenv.mkDerivation rec {
12 src = fetchFromGitHub {
15 rev = "Release_${version}";
16 sha256 = "sha256-DuZhkiHXdCplRiOy1Gsu7voVPdCbFt+4qFqlOeOeWQw=";
19 nativeBuildInputs = [ cmake ];
21 checkInputs = [ boost ];
23 cmakeFlags = [ "-DELFIO_BUILD_TESTS=ON" ];
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 ];