9 stdenv.mkDerivation rec {
13 src = fetchFromGitHub {
16 rev = "Release_${version}";
17 sha256 = "sha256-DuZhkiHXdCplRiOy1Gsu7voVPdCbFt+4qFqlOeOeWQw=";
20 nativeBuildInputs = [ cmake ];
22 nativeCheckInputs = [ boost ];
24 cmakeFlags = [ "-DELFIO_BUILD_TESTS=ON" ];
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 ];