mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
38 lines
934 B
Nix
38 lines
934 B
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, ocaml, findlib, piqi, stdlib-shims, num }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.7.7";
|
|
pname = "piqi-ocaml";
|
|
name = "ocaml${ocaml.version}-${pname}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alavrik";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1913jpsb8mvqi8609j4g4sm5jhg50dq0xqxgy8nmvknfryyc89nm";
|
|
};
|
|
|
|
nativeBuildInputs = [ ocaml findlib ];
|
|
buildInputs = [ piqi stdlib-shims ];
|
|
|
|
checkInputs = [ num ];
|
|
|
|
strictDeps = true;
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
DESTDIR=$out make install
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Universal schema language and a collection of tools built around it. These are the ocaml bindings";
|
|
homepage = "https://piqi.org";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.maurer ];
|
|
mainProgram = "piqic-ocaml";
|
|
};
|
|
}
|