2021-08-10 02:40:48 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub
|
|
|
|
, bzip2, expat, libedit, lmdb, openssl
|
2017-09-21 19:05:29 +01:00
|
|
|
, darwin, libiconv, Security
|
2021-08-21 17:07:55 +01:00
|
|
|
, python3 # for tests only
|
2019-09-06 17:07:34 +01:00
|
|
|
, cpp11 ? false
|
2017-09-21 19:05:29 +01:00
|
|
|
}:
|
2014-01-31 01:41:58 +00:00
|
|
|
|
2019-09-06 17:07:34 +01:00
|
|
|
let
|
2020-09-28 17:08:55 +01:00
|
|
|
zeroc_mcpp = stdenv.mkDerivation rec {
|
2019-09-06 17:07:34 +01:00
|
|
|
pname = "zeroc-mcpp";
|
|
|
|
version = "2.7.2.14";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zeroc-ice";
|
|
|
|
repo = "mcpp";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1psryc2ql1cp91xd3f8jz84mdaqvwzkdq2pr96nwn03ds4cd88wh";
|
|
|
|
};
|
|
|
|
|
2020-09-28 17:08:55 +01:00
|
|
|
configureFlags = [ "--enable-mcpplib" ];
|
2019-09-06 17:07:34 +01:00
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
2020-09-28 17:08:55 +01:00
|
|
|
};
|
2019-09-06 17:07:34 +01:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "zeroc-ice";
|
2021-08-10 02:40:48 +01:00
|
|
|
version = "3.7.6";
|
2014-01-31 01:41:58 +00:00
|
|
|
|
2015-06-27 20:38:21 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zeroc-ice";
|
|
|
|
repo = "ice";
|
|
|
|
rev = "v${version}";
|
2021-08-10 02:40:48 +01:00
|
|
|
sha256 = "0zc8gmlzl2f38m1fj6pv2vm8ka7fkszd6hx2lb8gfv65vn3m4sk4";
|
2014-01-31 01:41:58 +00:00
|
|
|
};
|
|
|
|
|
2021-08-10 02:40:48 +01:00
|
|
|
buildInputs = [ zeroc_mcpp bzip2 expat libedit lmdb openssl ]
|
2019-09-06 17:07:34 +01:00
|
|
|
++ lib.optionals stdenv.isDarwin [ darwin.cctools libiconv Security ];
|
2018-05-30 01:16:27 +01:00
|
|
|
|
2019-10-30 11:34:47 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=class-memaccess -Wno-error=deprecated-copy";
|
2014-01-31 01:41:58 +00:00
|
|
|
|
2021-08-18 01:14:20 +01:00
|
|
|
prePatch = lib.optionalString stdenv.isDarwin ''
|
2019-09-06 17:07:34 +01:00
|
|
|
substituteInPlace Make.rules.Darwin \
|
|
|
|
--replace xcrun ""
|
2014-01-31 01:41:58 +00:00
|
|
|
'';
|
|
|
|
|
2019-09-06 17:07:34 +01:00
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray+=(
|
|
|
|
"prefix=$out"
|
|
|
|
"OPTIMIZE=yes"
|
|
|
|
"USR_DIR_INSTALL=yes"
|
|
|
|
"LANGUAGES=cpp"
|
|
|
|
"CONFIGS=${if cpp11 then "cpp11-shared" else "shared"}"
|
|
|
|
"SKIP=slice2py" # provided by a separate package
|
|
|
|
)
|
2014-01-31 01:41:58 +00:00
|
|
|
'';
|
|
|
|
|
2019-09-06 17:07:34 +01:00
|
|
|
enableParallelBuilding = true;
|
2017-09-21 19:05:29 +01:00
|
|
|
|
2019-09-06 17:07:34 +01:00
|
|
|
outputs = [ "out" "bin" "dev" ];
|
|
|
|
|
2021-08-21 17:07:55 +01:00
|
|
|
doCheck = true;
|
|
|
|
checkInputs = with python3.pkgs; [ passlib ];
|
|
|
|
checkPhase = with lib; let
|
|
|
|
# these tests require network access so we need to skip them.
|
|
|
|
brokenTests = map escapeRegex [
|
|
|
|
"Ice/udp" "Glacier2" "IceGrid/simple" "IceStorm" "IceDiscovery/simple"
|
|
|
|
];
|
|
|
|
# matches CONFIGS flag in makeFlagsArray
|
|
|
|
configFlag = optionalString cpp11 "--config=cpp11-shared";
|
|
|
|
in ''
|
|
|
|
runHook preCheck
|
|
|
|
${python3.interpreter} ./cpp/allTests.py ${configFlag} --rfilter='${concatStringsSep "|" brokenTests}'
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
2019-09-06 17:07:34 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $bin $dev/share
|
|
|
|
mv $out/bin $bin
|
|
|
|
mv $out/share/ice $dev/share
|
|
|
|
'';
|
2015-06-27 20:38:21 +01:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-09-28 17:08:55 +01:00
|
|
|
homepage = "https://www.zeroc.com/ice.html";
|
2014-01-31 01:41:58 +00:00
|
|
|
description = "The internet communications engine";
|
2021-08-10 02:41:58 +01:00
|
|
|
license = licenses.gpl2Only;
|
2014-01-31 01:41:58 +00:00
|
|
|
platforms = platforms.unix;
|
2019-09-06 17:07:34 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-01-31 01:41:58 +00:00
|
|
|
};
|
|
|
|
}
|