linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / zeroc-ice / default.nix
blobef16e381bcfd7df1158b5c396d08a13af6e33016
1 { stdenv, lib, fetchFromGitHub, bzip2, expat, openssl, lmdb
2 , darwin, libiconv, Security
3 , cpp11 ? false
4 }:
6 let
7   zeroc_mcpp = stdenv.mkDerivation rec {
8     pname = "zeroc-mcpp";
9     version = "2.7.2.14";
11     src = fetchFromGitHub {
12       owner = "zeroc-ice";
13       repo = "mcpp";
14       rev = "v${version}";
15       sha256 = "1psryc2ql1cp91xd3f8jz84mdaqvwzkdq2pr96nwn03ds4cd88wh";
16     };
18     configureFlags = [ "--enable-mcpplib" ];
19     installFlags = [ "PREFIX=$(out)" ];
20   };
22 in stdenv.mkDerivation rec {
23   pname = "zeroc-ice";
24   version = "3.7.2";
26   src = fetchFromGitHub {
27     owner = "zeroc-ice";
28     repo = "ice";
29     rev = "v${version}";
30     sha256 = "0m9lh79dfpcwcp2jhmj0wqdcsw3rl633x2hzfw9n2i34jjv64fvg";
31   };
33   buildInputs = [ zeroc_mcpp bzip2 expat openssl lmdb ]
34     ++ lib.optionals stdenv.isDarwin [ darwin.cctools libiconv Security ];
36   NIX_CFLAGS_COMPILE = "-Wno-error=class-memaccess -Wno-error=deprecated-copy";
38   prePatch = lib.optional stdenv.isDarwin ''
39     substituteInPlace Make.rules.Darwin \
40         --replace xcrun ""
41   '';
43   preBuild = ''
44     makeFlagsArray+=(
45       "prefix=$out"
46       "OPTIMIZE=yes"
47       "USR_DIR_INSTALL=yes"
48       "LANGUAGES=cpp"
49       "CONFIGS=${if cpp11 then "cpp11-shared" else "shared"}"
50       "SKIP=slice2py" # provided by a separate package
51     )
52   '';
54   buildFlags = [ "srcs" ]; # no tests; they require network
56   enableParallelBuilding = true;
58   outputs = [ "out" "bin" "dev" ];
60   postInstall = ''
61     mkdir -p $bin $dev/share
62     mv $out/bin $bin
63     mv $out/share/ice $dev/share
64   '';
66   meta = with lib; {
67     homepage = "https://www.zeroc.com/ice.html";
68     description = "The internet communications engine";
69     license = licenses.gpl2;
70     platforms = platforms.unix;
71     maintainers = with maintainers; [ abbradar ];
72   };