nixpkgs/pkgs/development/ocaml-modules/rresult/default.nix
2017-12-14 07:36:29 +00:00

25 lines
692 B
Nix

{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg }:
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-rresult-${version}";
version = "0.5.0";
src = fetchurl {
url = "http://erratique.ch/software/rresult/releases/rresult-${version}.tbz";
sha256 = "1xxycxhdhaq8p9vhwi93s2mlxjwgm44fcxybx5vghzgbankz9yhm";
};
unpackCmd = "tar xjf $src";
buildInputs = [ ocaml findlib ocamlbuild topkg ];
inherit (topkg) buildPhase installPhase;
meta = {
license = stdenv.lib.licenses.isc;
homepage = http://erratique.ch/software/rresult;
description = "Result value combinators for OCaml";
maintainers = [ stdenv.lib.maintainers.vbgl ];
inherit (ocaml.meta) platforms;
};
}