summary refs log tree commit diff
path: root/pkgs/development/libraries/msgpack/generic.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/msgpack/generic.nix')
-rw-r--r--pkgs/development/libraries/msgpack/generic.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/libraries/msgpack/generic.nix b/pkgs/development/libraries/msgpack/generic.nix
new file mode 100644
index 000000000000..67418b6666d4
--- /dev/null
+++ b/pkgs/development/libraries/msgpack/generic.nix
@@ -0,0 +1,30 @@
+{ stdenv, cmake
+, version, src, patches ? [ ]
+, hostPlatform
+, ...
+}:
+
+stdenv.mkDerivation rec {
+  name = "msgpack-${version}";
+
+  inherit src patches;
+
+  nativeBuildInputs = [ cmake ];
+
+  enableParallelBuilding = true;
+
+  cmakeFlags = []
+    ++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
+                           "-DMSGPACK_BUILD_EXAMPLES=OFF"
+    ++ stdenv.lib.optional (hostPlatform.libc == "msvcrt")
+                           "-DCMAKE_SYSTEM_NAME=Windows"
+    ;
+
+  meta = with stdenv.lib; {
+    description = "MessagePack implementation for C and C++";
+    homepage    = https://msgpack.org;
+    license     = licenses.asl20;
+    maintainers = with maintainers; [ redbaron wkennington ];
+    platforms   = platforms.all;
+  };
+}