nixpkgs/pkgs/development/ocaml-modules/fpath/default.nix

24 lines
737 B
Nix
Raw Normal View History

2017-12-14 07:36:29 +00:00
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, astring }:
stdenv.mkDerivation {
2017-07-11 21:00:43 +00:00
name = "ocaml${ocaml.version}-fpath-0.7.2";
src = fetchurl {
url = https://erratique.ch/software/fpath/releases/fpath-0.7.2.tbz;
2017-07-11 21:00:43 +00:00
sha256 = "1hr05d8bpqmqcfdavn4rjk9rxr7v2zl84866f5knjifrm60sxqic";
};
2017-12-14 07:36:29 +00:00
buildInputs = [ ocaml findlib ocamlbuild topkg ];
propagatedBuildInputs = [ astring ];
inherit (topkg) buildPhase installPhase;
meta = {
description = "An OCaml module for handling file system paths with POSIX and Windows conventions";
homepage = https://erratique.ch/software/fpath;
license = stdenv.lib.licenses.isc;
maintainers = [ stdenv.lib.maintainers.vbgl ];
inherit (ocaml.meta) platforms;
};
}