mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
857c13e1af
adds myself as a maintainer adds assertions to have evaluation errors rather than build errors moves opam out of ocamlPackages, as it does not provide a library
42 lines
1.0 KiB
Nix
42 lines
1.0 KiB
Nix
{stdenv, fetchurl, ocaml, findlib, opam}:
|
|
let
|
|
pname = "xmlm";
|
|
version = "1.2.0";
|
|
webpage = "http://erratique.ch/software/${pname}";
|
|
ocaml_version = (builtins.parseDrvName ocaml.name).version;
|
|
in
|
|
|
|
assert stdenv.lib.versionAtLeast ocaml_version "3.12";
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ocaml-${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "${webpage}/releases/${pname}-${version}.tbz";
|
|
sha256 = "1jywcrwn5z3gkgvicr004cxmdaqfmq8wh72f81jqz56iyn5024nh";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib opam ];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
unpackCmd = "tar xjf $src";
|
|
|
|
buildPhase = "./pkg/build true";
|
|
|
|
installPhase = ''
|
|
opam-installer --script --prefix=$out ${pname}.install > install.sh
|
|
sh install.sh
|
|
ln -s $out/lib/${pname} $out/lib/ocaml/${ocaml_version}/site-lib/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An OCaml streaming codec to decode and encode the XML data format";
|
|
homepage = "${webpage}";
|
|
platforms = ocaml.meta.platforms;
|
|
maintainers = [ maintainers.vbgl ];
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|