msgpuck: init at v2.0
This commit is contained in:
parent
ca37481d25
commit
a7a7033e45
25
pkgs/development/libraries/msgpuck/default.nix
Normal file
25
pkgs/development/libraries/msgpuck/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "msgpuck-${version}";
|
||||||
|
version = "2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rtsisyk";
|
||||||
|
repo = "msgpuck";
|
||||||
|
rev = "${version}";
|
||||||
|
sha256 = "0cjq86kncn3lv65vig9cqkqqv2p296ymcjjbviw0j1s85cfflps0";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = ''A simple and efficient MsgPack binary serialization library in a self-contained header file'';
|
||||||
|
homepage = https://github.com/rtsisyk/msgpuck;
|
||||||
|
license = licenses.bsd2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ izorkin ];
|
||||||
|
};
|
||||||
|
}
|
@ -8341,6 +8341,8 @@ with pkgs;
|
|||||||
|
|
||||||
msgpack-tools = callPackage ../development/tools/msgpack-tools { };
|
msgpack-tools = callPackage ../development/tools/msgpack-tools { };
|
||||||
|
|
||||||
|
msgpuck = callPackage ../development/libraries/msgpuck { };
|
||||||
|
|
||||||
msitools = callPackage ../development/tools/misc/msitools { };
|
msitools = callPackage ../development/tools/misc/msitools { };
|
||||||
|
|
||||||
multi-ghc-travis = haskell.lib.justStaticExecutables haskellPackages.multi-ghc-travis;
|
multi-ghc-travis = haskell.lib.justStaticExecutables haskellPackages.multi-ghc-travis;
|
||||||
|
Loading…
Reference in New Issue
Block a user