mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:06:41 +00:00
24 lines
609 B
Nix
24 lines
609 B
Nix
|
{ stdenv, fetchFromGitHub, cmake }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "msgpack-tools-${version}";
|
||
|
version = "v0.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "ludocode";
|
||
|
repo = "msgpack-tools";
|
||
|
rev = version;
|
||
|
sha256 = "1ygjk25zlpqjckxgqmahnz999704zy2bd9id6hp5jych1szkjgs5";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ cmake ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Command-line tools for converting between MessagePack and JSON";
|
||
|
homepage = https://github.com/ludocode/msgpack-tools;
|
||
|
license = licenses.mit;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = with maintainers; [ alibabzo ];
|
||
|
};
|
||
|
}
|