3
0
Fork 0
forked from mirrors/nixpkgs

ocamlPackages.ppx_deriving: 3.3 -> 4.1

This commit is contained in:
Vincent Laporte 2017-03-04 06:24:36 +01:00
parent 1bd3fa6210
commit 843e5daebe

View file

@ -1,15 +1,16 @@
{stdenv, buildOcaml, fetchurl,
cppo, ppx_tools, result, ounit}:
{ stdenv, buildOcaml, fetchzip
, cppo, ppx_tools, result, ounit
}:
buildOcaml rec {
name = "ppx_deriving";
version = "v3.3";
version = "4.1";
minimumSupportedOcamlVersion = "4.02";
src = fetchurl {
url = "https://github.com/whitequark/${name}/archive/${version}.tar.gz";
sha256 = "1j20c6r2v7h05a4v9m8z5m1yqgwif41yrp63mik14pf3dkrj8x3f";
src = fetchzip {
url = "https://github.com/whitequark/${name}/archive/v${version}.tar.gz";
sha256 = "0cy9p8d8cbcxvqyyv8fz2z9ypi121zrgaamdlp4ld9f3jnwz7my9";
};
hasSharedObjects = true;