Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
723 B
Nix
36 lines
723 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
boost,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elfio";
|
|
version = "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "serge1";
|
|
repo = "elfio";
|
|
rev = "Release_${version}";
|
|
sha256 = "sha256-DuZhkiHXdCplRiOy1Gsu7voVPdCbFt+4qFqlOeOeWQw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
nativeCheckInputs = [ boost ];
|
|
|
|
cmakeFlags = [ "-DELFIO_BUILD_TESTS=ON" ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Header-only C++ library for reading and generating files in the ELF binary format";
|
|
homepage = "https://github.com/serge1/ELFIO";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ prusnak ];
|
|
};
|
|
}
|