nixpkgs/pkgs/development/ocaml-modules/coin/default.nix

39 lines
816 B
Nix
Raw Normal View History

2021-10-26 01:43:57 +02:00
{ buildDunePackage
, fetchzip
, findlib
, lib
, menhir
, ocaml
, re
}:
buildDunePackage rec {
pname = "coin";
version = "0.1.3";
minimalOCamlVersion = "4.03";
src = fetchzip {
url = "https://github.com/mirage/coin/releases/download/v${version}/coin-v${version}.tbz";
sha256 = "06bfidvglyp9hzvr2xwbdx8wf26is2xrzc31fldzjf5ab0vd076p";
};
postPatch = ''
substituteInPlace src/dune --replace 'ocaml} ' \
'ocaml} -I ${findlib}/lib/ocaml/${ocaml.version}/site-lib '
'';
useDune2 = true;
nativeBuildInputs = [ menhir ];
checkInputs = [ re ];
doCheck = true;
meta = {
description = "A library to normalize an KOI8-{U,R} input to Unicode";
license = lib.licenses.mit;
homepage = "https://github.com/mirage/coin";
2021-11-03 01:38:27 +01:00
maintainers = with lib.maintainers; [ ];
2021-10-26 01:43:57 +02:00
};
}