mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
4e42cac49d
This change was produced by searching for remaining occurrences of stdenv.lib and replacing them manually. Reference #108938.
30 lines
893 B
Nix
30 lines
893 B
Nix
{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, cmdliner, seq, stdlib-shims }:
|
|
|
|
if !lib.versionAtLeast ocaml.version "4.05"
|
|
then throw "fmt is not available for OCaml ${ocaml.version}"
|
|
else
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.8.9";
|
|
pname = "ocaml${ocaml.version}-fmt";
|
|
|
|
src = fetchurl {
|
|
url = "https://erratique.ch/software/fmt/releases/fmt-${version}.tbz";
|
|
sha256 = "0gkkkj4x678vxdda4xaw2dd44qjacavsvn5nx8gydfwah6pjbkxk";
|
|
};
|
|
|
|
nativeBuildInputs = [ ocaml findlib ocamlbuild ];
|
|
buildInputs = [ findlib topkg cmdliner ];
|
|
propagatedBuildInputs = [ seq stdlib-shims ];
|
|
|
|
inherit (topkg) buildPhase installPhase;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://erratique.ch/software/fmt";
|
|
license = licenses.isc;
|
|
description = "OCaml Format pretty-printer combinators";
|
|
inherit (ocaml.meta) platforms;
|
|
maintainers = [ maintainers.vbgl ];
|
|
};
|
|
}
|