1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

ocsigen-i18n: 3.7.0 → 4.0.0

This commit is contained in:
Vincent Laporte 2024-05-17 06:09:46 +02:00 committed by Vincent Laporte
parent bfb7a88267
commit f2c6e54b8b

View file

@ -1,26 +1,16 @@
{ lib, stdenv, fetchFromGitHub, ocamlPackages }:
{ lib, fetchFromGitHub, ocamlPackages }:
stdenv.mkDerivation rec {
ocamlPackages.buildDunePackage rec {
pname = "ocsigen-i18n";
version = "3.7.0";
version = "4.0.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
'';
buildInputs = with ocamlPackages; [ ppxlib ];
src = fetchFromGitHub {
owner = "besport";
repo = "ocsigen-i18n";
rev = version;
sha256 = "sha256-PmdDyn+MUcNFrZpP/KLGQzdXUFRr+dYRAZjTZxHSeaw=";
hash = "sha256-NIl1YUTws8Ff4nrqdhU7oS/TN0lxVQgrtyEZtpS1ojM=";
};
meta = {