elfio: init at 3.9
This commit is contained in:
parent
6bd1daaf0f
commit
3e231f033c
2 changed files with 36 additions and 0 deletions
34
pkgs/development/libraries/elfio/default.nix
Normal file
34
pkgs/development/libraries/elfio/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, boost
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "elfio";
|
||||||
|
version = "3.9";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "serge1";
|
||||||
|
repo = "elfio";
|
||||||
|
rev = "Release_${version}";
|
||||||
|
sha256 = "sha256-5O9KnHZXzepp3O1PGenJarrHElWLHgyBvvDig1Hkmo4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
checkInputs = [ 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -16093,6 +16093,8 @@ with pkgs;
|
||||||
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
elfio = callPackage ../development/libraries/elfio { };
|
||||||
|
|
||||||
enchant1 = callPackage ../development/libraries/enchant/1.x.nix { };
|
enchant1 = callPackage ../development/libraries/enchant/1.x.nix { };
|
||||||
|
|
||||||
enchant2 = callPackage ../development/libraries/enchant/2.x.nix { };
|
enchant2 = callPackage ../development/libraries/enchant/2.x.nix { };
|
||||||
|
|
Loading…
Reference in a new issue