neovim-qt: 0pre -> 0.2.1, use libmsgpack 1.4

This commit is contained in:
Michael Raskin
2016-08-03 17:58:22 +02:00
parent d93f917182
commit ef46388c48
3 changed files with 19 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
{ callPackage, fetchFromGitHub, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.4.2";
src = fetchFromGitHub {
owner = "msgpack";
repo = "msgpack-c";
rev = "cpp-${version}";
sha256 = "0zlanifi5hmm303pzykpidq5jbapl891zwkwhkllfn8ab1jvzbaa";
};
})