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
This commit is contained in:
parent
0baa434f2c
commit
75cea1db58
25
pkgs/development/ocaml-modules/fpath/default.nix
Normal file
25
pkgs/development/ocaml-modules/fpath/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg, astring }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "ocaml${ocaml.version}-fpath-0.7.1";
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://erratique.ch/software/fpath/releases/fpath-0.7.1.tbz;
|
||||||
|
sha256 = "05134ij27xjl6gaqsc65yl19vfj6cjxq3mbm9bf4mija8grdpn6g";
|
||||||
|
};
|
||||||
|
|
||||||
|
unpackCmd = "tar xjf $src";
|
||||||
|
|
||||||
|
buildInputs = [ ocaml findlib ocamlbuild opam topkg ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ astring ];
|
||||||
|
|
||||||
|
inherit (topkg) buildPhase installPhase;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "An OCaml module for handling file system paths with POSIX and Windows conventions";
|
||||||
|
homepage = http://erratique.ch/software/fpath;
|
||||||
|
license = stdenv.lib.licenses.isc;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
||||||
|
inherit (ocaml.meta) platforms;
|
||||||
|
};
|
||||||
|
}
|
@ -182,6 +182,8 @@ let
|
|||||||
inherit (pkgs) fontconfig;
|
inherit (pkgs) fontconfig;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fpath = callPackage ../development/ocaml-modules/fpath { };
|
||||||
|
|
||||||
functory = callPackage ../development/ocaml-modules/functory { };
|
functory = callPackage ../development/ocaml-modules/functory { };
|
||||||
|
|
||||||
gen = callPackage ../development/ocaml-modules/gen { };
|
gen = callPackage ../development/ocaml-modules/gen { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user