mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
25 lines
630 B
Nix
25 lines
630 B
Nix
{ stdenv, lib, fetchurl
|
|
, ocaml, findlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ocaml${ocaml.version}-stdcompat";
|
|
version = "15";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/thierry-martinez/stdcompat/releases/download/v${version}/stdcompat-${version}.tar.gz";
|
|
sha256 = "1xcwb529m4lg9cbnxa9m3x2nnl9nxzz1x5lxpvdfflg4zxl6yx2y";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ];
|
|
|
|
configureFlags = "--libdir=$(OCAMLFIND_DESTDIR)";
|
|
|
|
meta = {
|
|
homepage = "https://github.com/thierry-martinez/stdcompat";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
inherit (ocaml.meta) platforms;
|
|
};
|
|
}
|