a1632f94f0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ocaml4.05.0-expat/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.1.0 with grep in /nix/store/h5vpz6lcpakpprcah598pq14m0bj0rkk-ocaml4.05.0-expat-1.1.0 - directory tree listing: https://gist.github.com/3f0b6925ca3a2bb122939a3f22a13b5c
33 lines
799 B
Nix
33 lines
799 B
Nix
{ stdenv, fetchFromGitHub, expat, ocaml, findlib, ounit }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ocaml${ocaml.version}-expat-${version}";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "whitequark";
|
|
repo = "ocaml-expat";
|
|
rev = "v${version}";
|
|
sha256 = "07wm9663z744ya6z2lhiz5hbmc76kkipg04j9vw9dqpd1y1f2x3q";
|
|
};
|
|
|
|
prePatch = ''
|
|
substituteInPlace Makefile --replace "gcc" "\$(CC)"
|
|
'';
|
|
|
|
buildInputs = [ ocaml findlib expat ounit ];
|
|
|
|
doCheck = !stdenv.lib.versionAtLeast ocaml.version "4.06";
|
|
checkTarget = "testall";
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
meta = {
|
|
description = "OCaml wrapper for the Expat XML parsing library";
|
|
license = stdenv.lib.licenses.mit;
|
|
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
|
inherit (src.meta) homepage;
|
|
inherit (ocaml.meta) platforms;
|
|
};
|
|
}
|