mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
25 lines
720 B
Nix
25 lines
720 B
Nix
{ stdenv, fetchurl, ocaml, findlib, piqi, ulex, easy-format, xmlm, camlp4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.7.5";
|
|
name = "piqi-ocaml-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/alavrik/piqi-ocaml/archive/v${version}.tar.gz";
|
|
sha256 = "0ngz6y8i98i5v2ma8nk6mc83pdsmf2z0ks7m3xi6clfg3zqbddrv";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib piqi camlp4 ];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
installPhase = "DESTDIR=$out make install";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://piqi.org;
|
|
description = "Universal schema language and a collection of tools built around it. These are the ocaml bindings";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.maurer ];
|
|
};
|
|
}
|