7dce6c88d2
* neovimLibvterm: 5a748f97 -> 4ca7ebf7 * neovim ruby: 0.5.0 -> 0.5.1 * pythonPackages.neovim: 0.1.13 -> 0.2.0 * libmpack: 1.0.3-rev80bd55ea6 -> 1.0.5 * luaPackages.mpack: switched to new source location, 1.0.7_ef025224a7 * only one set of lua packages, switched to luajit
25 lines
667 B
Nix
25 lines
667 B
Nix
{ stdenv, fetchFromGitHub, libtool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libmpack-${version}";
|
|
version = "1.0.5";
|
|
src = fetchFromGitHub {
|
|
owner = "tarruda";
|
|
repo = "libmpack";
|
|
rev = version;
|
|
sha256 = "0rai5djdkjz7bsn025k5489in7r1amagw1pib0z4qns6b52kiar2";
|
|
};
|
|
LIBTOOL = "libtool";
|
|
buildInputs = [ libtool ];
|
|
preInstall = ''
|
|
export PREFIX=$out
|
|
'';
|
|
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 ++ platforms.darwin;
|
|
};
|
|
}
|