mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
35 lines
716 B
Nix
35 lines
716 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 ];
|
|
};
|
|
}
|