46 lines
1,007 B
Nix
46 lines
1,007 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
ocaml,
|
|
findlib,
|
|
ocamlbuild,
|
|
topkg,
|
|
astring,
|
|
}:
|
|
|
|
if lib.versionOlder ocaml.version "4.03" then
|
|
throw "fpath is not available for OCaml ${ocaml.version}"
|
|
else
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ocaml${ocaml.version}-fpath";
|
|
version = "0.7.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://erratique.ch/software/fpath/releases/fpath-${version}.tbz";
|
|
sha256 = "03z7mj0sqdz465rc4drj1gr88l9q3nfs374yssvdjdyhjbqqzc0j";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
ocaml
|
|
findlib
|
|
ocamlbuild
|
|
topkg
|
|
];
|
|
buildInputs = [ topkg ];
|
|
|
|
propagatedBuildInputs = [ astring ];
|
|
|
|
strictDeps = true;
|
|
|
|
inherit (topkg) buildPhase installPhase;
|
|
|
|
meta = {
|
|
description = "OCaml module for handling file system paths with POSIX and Windows conventions";
|
|
homepage = "https://erratique.ch/software/fpath";
|
|
license = lib.licenses.isc;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
inherit (ocaml.meta) platforms;
|
|
};
|
|
}
|