nixpkgs/pkgs/development/ocaml-modules/coin/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

37 lines
805 B
Nix

{ buildDunePackage
, fetchurl
, findlib
, lib
, ocaml
, re
}:
buildDunePackage rec {
pname = "coin";
version = "0.1.4";
minimalOCamlVersion = "4.03";
src = fetchurl {
url = "https://github.com/mirage/coin/releases/download/v${version}/coin-${version}.tbz";
sha256 = "sha256:0069qqswd1ik5ay3d5q1v1pz0ql31kblfsnv0ax0z8jwvacp3ack";
};
postPatch = ''
substituteInPlace src/dune --replace 'ocaml} ' \
'ocaml} -I ${findlib}/lib/ocaml/${ocaml.version}/site-lib '
'';
nativeBuildInputs = [ findlib ];
buildInputs = [ re ];
doCheck = true;
meta = {
description = "Library to normalize an KOI8-{U,R} input to Unicode";
homepage = "https://github.com/mirage/coin";
license = lib.licenses.mit;
maintainers = [ ];
mainProgram = "coin.generate";
};
}