1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 15:15:36 +00:00
nixpkgs/pkgs/development/tools/ocaml/ocsigen-i18n/default.nix

31 lines
681 B
Nix
Raw Normal View History

2017-03-04 13:46:04 +00:00
{ stdenv, fetchurl, ocamlPackages }:
stdenv.mkDerivation rec
{
name = "ocsigen-i18n";
version = "3.1.0";
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 {
url = "https://github.com/besport/${name}/archive/${version}.tar.gz";
sha256 = "0cw0mmr67wx03j4279z7ldxwb01smkqz9rbklx5lafrj5sf99178";
};
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 ];
};
}