summary refs log tree commit diff
path: root/pkgs/development/libraries/libmpack
diff options
context:
space:
mode:
authorRok Garbas <rok@garbas.si>2016-06-04 17:58:01 +0200
committerRok Garbas <rok@garbas.si>2016-06-04 17:58:01 +0200
commitf878018eceda14682c6d56d6bad2e3783a7c6736 (patch)
treea86d0b4a201531b2e2307f6e1db62ee2780d0b98 /pkgs/development/libraries/libmpack
parent3204c2753de75fa4fd6a66d5cbe909bac96cc681 (diff)
downloadnixpkgs-f878018eceda14682c6d56d6bad2e3783a7c6736.tar
nixpkgs-f878018eceda14682c6d56d6bad2e3783a7c6736.tar.gz
nixpkgs-f878018eceda14682c6d56d6bad2e3783a7c6736.tar.bz2
nixpkgs-f878018eceda14682c6d56d6bad2e3783a7c6736.tar.lz
nixpkgs-f878018eceda14682c6d56d6bad2e3783a7c6736.tar.xz
nixpkgs-f878018eceda14682c6d56d6bad2e3783a7c6736.tar.zst
nixpkgs-f878018eceda14682c6d56d6bad2e3783a7c6736.zip
neovim: 0.1.3 -> 0.1.4
* 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)
Diffstat (limited to 'pkgs/development/libraries/libmpack')
-rw-r--r--pkgs/development/libraries/libmpack/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libmpack/default.nix b/pkgs/development/libraries/libmpack/default.nix
index d127531b1e0..867a7ccf79d 100644
--- a/pkgs/development/libraries/libmpack/default.nix
+++ b/pkgs/development/libraries/libmpack/default.nix
@@ -2,12 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "libmpack-${version}";
-  version = "1.0.2";
+  version = "1.0.3-rev${rev}";
+  rev = "071d944c9ff7b7fbd2c3c19d1fd1a231363ddeea";
   src = fetchFromGitHub {
     owner = "tarruda";
     repo = "libmpack";
-    rev = version;
-    sha256 = "0s391vyz1gv4j95zdyvxspw7c0xq7d7b4fh0yxrgqqqp5js1rlj0";
+    inherit rev;
+    sha256 = "1h3pbmykm69gfyi0wz647gz5836a6f3jc4azzll7i3mkpc11gcrd";
   };
   buildInputs = [ libtool ];
   installPhase = ''
@@ -19,7 +20,7 @@ stdenv.mkDerivation rec {
     description = "Simple implementation of msgpack in C";
     homepage = "https://github.com/tarruda/libmpack/";
     license = licenses.mit;
-    maintainers = with maintainers; [ lovek323 ];
+    maintainers = with maintainers; [ lovek323 garbas ];
     platforms = platforms.linux;
   };
 }