nixpkgs/pkgs/development/libraries/libmsgpack/1.4.nix
Kevin Cox c09690b354
Revert "libmsgpack_1_4: remove"
This reverts commit ff89e81898.

There are references to this variable.
2017-01-28 11:14:31 +00:00

13 lines
288 B
Nix

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