nixpkgs/pkgs/development/ocaml-modules/rresult/default.nix
R. RyanTM 9c2b2dbd9d ocamlPackages.rresult: 0.5.0 -> 0.6.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ocaml4.06.1-rresult/versions
2018-10-26 21:53:10 -07:00

25 lines
692 B
Nix

{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg }:
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-rresult-${version}";
version = "0.6.0";
src = fetchurl {
url = "http://erratique.ch/software/rresult/releases/rresult-${version}.tbz";
sha256 = "1k69a3gvrk7f2cshwjzvk7818f0bwxhacgd14wxy6d4gmrggci86";
};
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;
};
}