4e42cac49d
This change was produced by searching for remaining occurrences of stdenv.lib and replacing them manually. Reference #108938.
32 lines
863 B
Nix
32 lines
863 B
Nix
{ stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg
|
|
, faraday
|
|
}:
|
|
|
|
if !lib.versionAtLeast ocaml.version "4.3"
|
|
then throw "farfadet is not available for OCaml ${ocaml.version}"
|
|
else
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ocaml${ocaml.version}-farfadet-${version}";
|
|
version = "0.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/oklm-wsh/Farfadet/releases/download/v${version}/farfadet-${version}.tbz";
|
|
sha256 = "0nlafnp0pwx0n4aszpsk6nvcvqi9im306p4jhx70si7k3xprlr2j";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ocamlbuild topkg ];
|
|
|
|
propagatedBuildInputs = [ faraday ];
|
|
|
|
inherit (topkg) buildPhase installPhase;
|
|
|
|
meta = {
|
|
description = "A printf-like for Faraday library";
|
|
homepage = "https://github.com/oklm-wsh/Farfadet";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
inherit (ocaml.meta) platforms;
|
|
};
|
|
}
|