2024-05-17 04:09:46 +00:00
|
|
|
{ lib, fetchFromGitHub, ocamlPackages }:
|
2017-03-04 13:46:04 +00:00
|
|
|
|
2024-05-17 04:09:46 +00:00
|
|
|
ocamlPackages.buildDunePackage rec {
|
2018-05-28 12:59:57 +00:00
|
|
|
pname = "ocsigen-i18n";
|
2024-05-17 04:09:46 +00:00
|
|
|
version = "4.0.0";
|
2017-03-04 13:46:04 +00:00
|
|
|
|
2024-05-17 04:09:46 +00:00
|
|
|
buildInputs = with ocamlPackages; [ ppxlib ];
|
2017-03-04 13:46:04 +00:00
|
|
|
|
2021-10-30 11:15:56 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "besport";
|
|
|
|
repo = "ocsigen-i18n";
|
|
|
|
rev = version;
|
2024-05-17 04:09:46 +00:00
|
|
|
hash = "sha256-NIl1YUTws8Ff4nrqdhU7oS/TN0lxVQgrtyEZtpS1ojM=";
|
2017-03-04 13:46:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/besport/ocsigen-i18n";
|
2017-03-04 13:46:04 +00:00
|
|
|
description = "I18n made easy for web sites written with eliom";
|
2021-01-23 12:26:19 +00:00
|
|
|
license = lib.licenses.lgpl21;
|
|
|
|
maintainers = [ lib.maintainers.gal_bolle ];
|
2017-03-04 13:46:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|