1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 05:31:22 +00:00
nixpkgs/pkgs/development/libraries/libmsgpack/default.nix

13 lines
288 B
Nix
Raw Normal View History

2015-03-10 18:44:59 +00:00
{ callPackage, fetchFromGitHub, ... } @ args:
2015-03-10 18:44:59 +00:00
callPackage ./generic.nix (args // rec {
2015-04-04 02:38:49 +01:00
version = "1.1.0";
2015-03-10 18:44:59 +00:00
src = fetchFromGitHub {
owner = "msgpack";
repo = "msgpack-c";
rev = "cpp-${version}";
2015-04-04 02:38:49 +01:00
sha256 = "1hnpnin6gjiilbzfd75871kamfn9grrf53qpbs061sflvz56fddq";
};
2015-03-10 18:44:59 +00:00
})