nixpkgs/pkgs/by-name/oc/ocsigen-i18n/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
573 B
Nix
Raw Normal View History

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
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 = {
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";
license = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.gal_bolle ];
2017-03-04 13:46:04 +00:00
};
}