linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / zeroc-ice / 3.6.nix
blob896973e32eb8ca14af203e48daeaae92494a1f10
1 { stdenv, lib, fetchFromGitHub, fetchpatch, mcpp, bzip2, expat, openssl, db5
2 , darwin, libiconv, Security
3 , cpp11 ? false
4 }:
6 stdenv.mkDerivation rec {
7   pname = "zeroc-ice";
8   version = "3.6.3";
10   src = fetchFromGitHub {
11     owner = "zeroc-ice";
12     repo = "ice";
13     rev = "v${version}";
14     sha256 = "05xympbns32aalgcfcpxwfd7bvg343f16xpg6jv5s335ski3cjy2";
15   };
17   buildInputs = [ mcpp bzip2 expat openssl db5 ]
18     ++ lib.optionals stdenv.isDarwin [ darwin.cctools libiconv Security ];
20   postUnpack = ''
21     sourceRoot=$sourceRoot/cpp
22   '';
24   prePatch = lib.optional stdenv.isDarwin ''
25     substituteInPlace config/Make.rules.Darwin \
26         --replace xcrun ""
27   '';
29   patches = [
30     # Fixes compilation issues with GCC 8 using one of the patches
31     # provided in https://github.com/zeroc-ice/ice/issues/82
32     ( fetchpatch {
33       url = "https://github.com/zeroc-ice/ice/commit/a6a4981616b669432ff7b588179d6e93694d9e3f.patch";
34       sha256 = "17j5r7gsa3izrm7zln4mrp7l16h532gvmpas0kzglybicbiz7d56";
35       stripLen = 1;
36     })
37   ];
39   preBuild = ''
40     makeFlagsArray+=(
41       "prefix=$out"
42       "OPTIMIZE=yes"
43       "USR_DIR_INSTALL=yes"
44       "CONFIGS=${if cpp11 then "cpp11-shared" else "shared"}"
45       "SKIP=slice2py" # provided by a separate package
46     )
47   '';
49   # cannot find -lIceXML (linking bin/transformdb)
50   enableParallelBuilding = false;
52   outputs = [ "out" "bin" "dev" ];
54   postInstall = ''
55     mkdir -p $bin $dev/share
56     mv $out/bin $bin
57     mv $out/share/Ice-* $dev/share/ice
58     rm -rf $out/share/slice
59   '';
61   meta = with lib; {
62     homepage = "http://www.zeroc.com/ice.html";
63     description = "The internet communications engine";
64     license = licenses.gpl2;
65     platforms = platforms.unix;
66   };