f878018ece
* removing luaMessagePack (only used by neovim) * using libmpack (updated to latest master since they fixed a lot of packaging issues) * package libmpack lua bidnings * neovim expression now excepts luaPackages as an input and not individual lua packages (to avoid depending on different lua version)
27 lines
767 B
Nix
27 lines
767 B
Nix
{ stdenv, fetchFromGitHub, libtool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libmpack-${version}";
|
|
version = "1.0.3-rev${rev}";
|
|
rev = "071d944c9ff7b7fbd2c3c19d1fd1a231363ddeea";
|
|
src = fetchFromGitHub {
|
|
owner = "tarruda";
|
|
repo = "libmpack";
|
|
inherit rev;
|
|
sha256 = "1h3pbmykm69gfyi0wz647gz5836a6f3jc4azzll7i3mkpc11gcrd";
|
|
};
|
|
buildInputs = [ libtool ];
|
|
installPhase = ''
|
|
mkdir -p $out/lib/libmpack
|
|
cp -R build/* $out/lib/libmpack
|
|
rm -rf $out/lib/libmpack/debug
|
|
'';
|
|
meta = with stdenv.lib; {
|
|
description = "Simple implementation of msgpack in C";
|
|
homepage = "https://github.com/tarruda/libmpack/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lovek323 garbas ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|