bcd7045998
Since the setting DCMAKE_SKIP_BUILD_RPATH was disabled, we can now run the checkPhase of cmake derivations without having to tweak the LD_LIBRARY_PATH anymore.
31 lines
826 B
Nix
31 lines
826 B
Nix
{ stdenv, fetchFromGitHub, cmake, bpp-core }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bpp-seq";
|
|
|
|
inherit (bpp-core) version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BioPP";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1mc09g8jswzsa4wgrfv59jxn15ys3q8s0227p1j838wkphlwn2qk";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ bpp-core ];
|
|
|
|
postFixup = ''
|
|
substituteInPlace $out/lib/cmake/${pname}/${pname}-targets.cmake \
|
|
--replace 'set(_IMPORT_PREFIX' '#set(_IMPORT_PREFIX'
|
|
'';
|
|
# prevents cmake from exporting incorrect INTERFACE_INCLUDE_DIRECTORIES
|
|
# of form /nix/store/.../nix/store/.../include,
|
|
# probably due to relative vs absolute path issue
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
meta = bpp-core.meta // {
|
|
changelog = "https://github.com/BioPP/bpp-seq/blob/master/ChangeLog";
|
|
};
|
|
}
|