nixpkgs/pkgs/development/libraries/libmpack/default.nix
Rok Garbas 7dce6c88d2 neovim: 0.2.0 -> 0.2.1
* 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
2017-11-15 01:21:46 +01:00

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;
};
}