nixpkgs/pkgs/development/tools/ocaml/ocsigen-i18n/default.nix

31 lines
683 B
Nix
Raw Normal View History

2017-03-04 13:46:04 +00:00
{ stdenv, fetchurl, ocamlPackages }:
stdenv.mkDerivation rec
{
2018-05-28 13:59:57 +01:00
pname = "ocsigen-i18n";
version = "3.4.0";
2017-03-04 13:46:04 +00:00
buildInputs = with ocamlPackages; [ ocaml findlib ];
dontStrip = true;
2017-03-04 13:46:04 +00:00
installPhase = ''
mkdir -p $out/bin
make bindir=$out/bin install
'';
src = fetchurl {
2018-05-28 13:59:57 +01:00
url = "https://github.com/besport/${pname}/archive/${version}.tar.gz";
sha256 = "0i7cck6zlgwjpksb4s1jpy193h85jixf4d0nmqj09y3zcpn2i8gb";
2017-03-04 13:46:04 +00:00
};
meta = {
homepage = https://github.com/besport/ocsigen-i18n;
description = "I18n made easy for web sites written with eliom";
license = stdenv.lib.licenses.lgpl21;
maintainers = [ stdenv.lib.maintainers.gal_bolle ];
};
}