about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/ocsigen-i18n/default.nix
blob: fcb43938112d1adb39c7c4017a5fe03bc4b0b527 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib, stdenv, fetchFromGitHub, ocamlPackages }:

stdenv.mkDerivation rec {
  pname = "ocsigen-i18n";
  version = "3.7.0";

  strictDeps = true;

  nativeBuildInputs = with ocamlPackages; [ ocaml findlib ];
  buildInputs = with ocamlPackages; [ ppx_tools ];

  dontStrip = true;

  installPhase = ''
    mkdir -p $out/bin
    make bindir=$out/bin install
  '';

  src = fetchFromGitHub {
    owner = "besport";
    repo = "ocsigen-i18n";
    rev = version;
    sha256 = "sha256-PmdDyn+MUcNFrZpP/KLGQzdXUFRr+dYRAZjTZxHSeaw=";
  };

  meta = {
    homepage = "https://github.com/besport/ocsigen-i18n";
    description = "I18n made easy for web sites written with eliom";
    license = lib.licenses.lgpl21;
    maintainers = [ lib.maintainers.gal_bolle ];
  };

}