ocamlPackages.fpath: init at 0.7.1

Fpath is an OCaml module for handling file system paths with POSIX and Windows conventions.

Homepage: http://erratique.ch/software/fpath

+27
+25
pkgs/development/ocaml-modules/fpath/default.nix
···
··· 1 + { stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg, astring }: 2 + 3 + stdenv.mkDerivation { 4 + name = "ocaml${ocaml.version}-fpath-0.7.1"; 5 + src = fetchurl { 6 + url = http://erratique.ch/software/fpath/releases/fpath-0.7.1.tbz; 7 + sha256 = "05134ij27xjl6gaqsc65yl19vfj6cjxq3mbm9bf4mija8grdpn6g"; 8 + }; 9 + 10 + unpackCmd = "tar xjf $src"; 11 + 12 + buildInputs = [ ocaml findlib ocamlbuild opam topkg ]; 13 + 14 + propagatedBuildInputs = [ astring ]; 15 + 16 + inherit (topkg) buildPhase installPhase; 17 + 18 + meta = { 19 + description = "An OCaml module for handling file system paths with POSIX and Windows conventions"; 20 + homepage = http://erratique.ch/software/fpath; 21 + license = stdenv.lib.licenses.isc; 22 + maintainers = [ stdenv.lib.maintainers.vbgl ]; 23 + inherit (ocaml.meta) platforms; 24 + }; 25 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 182 inherit (pkgs) fontconfig; 183 }; 184 185 functory = callPackage ../development/ocaml-modules/functory { }; 186 187 gen = callPackage ../development/ocaml-modules/gen { };
··· 182 inherit (pkgs) fontconfig; 183 }; 184 185 + fpath = callPackage ../development/ocaml-modules/fpath { }; 186 + 187 functory = callPackage ../development/ocaml-modules/functory { }; 188 189 gen = callPackage ../development/ocaml-modules/gen { };