camlimages: 4.1.2 -> 5.0.0

This commit is contained in:
Masayuki Takeda
2018-03-07 19:09:32 +09:00
parent 8154f9ebd5
commit 3f73823117
2 changed files with 16 additions and 1 deletions
@@ -0,0 +1,12 @@
{ stdenv, fetchzip, findlib, jbuilder, ocaml, configurator, cppo, lablgtk }:
stdenv.mkDerivation rec {
name = "camlimages-${version}";
version = "5.0.0";
src = fetchzip {
url = "https://bitbucket.org/camlspotter/camlimages/get/${version}.tar.gz";
sha256 = "00qvwxkfnhv93yi1iq7vy3p5lxyi9xigxcq464s4ii6bmp32d998";
};
buildInputs = [ findlib jbuilder ocaml configurator cppo lablgtk ];
buildPhase = "jbuilder build -p camlimages";
inherit (jbuilder) installPhase;
}