94 lines
3.3 KiB
Nix
94 lines
3.3 KiB
Nix
{ stdenv, lib, fetchurl, makeWrapper,
|
|
ocaml, unzip, ncurses, curl, aspcud
|
|
}:
|
|
|
|
assert lib.versionAtLeast ocaml.version "3.12.1";
|
|
|
|
let
|
|
srcs = {
|
|
cudf = fetchurl {
|
|
url = "https://gforge.inria.fr/frs/download.php/file/33593/cudf-0.7.tar.gz";
|
|
sha256 = "92c8a9ed730bbac73f3513abab41127d966c9b9202ab2aaffcd02358c030a701";
|
|
};
|
|
extlib = fetchurl {
|
|
url = "http://ocaml-extlib.googlecode.com/files/extlib-1.5.3.tar.gz";
|
|
sha256 = "c095eef4202a8614ff1474d4c08c50c32d6ca82d1015387785cf03d5913ec021";
|
|
};
|
|
ocaml_re = fetchurl {
|
|
url = "https://github.com/ocaml/ocaml-re/archive/ocaml-re-1.2.0.tar.gz";
|
|
sha256 = "a34dd9d6136731436a963bbab5c4bbb16e5d4e21b3b851d34887a3dec451999f";
|
|
};
|
|
ocamlgraph = fetchurl {
|
|
url = "http://ocamlgraph.lri.fr/download/ocamlgraph-1.8.5.tar.gz";
|
|
sha256 = "d167466435a155c779d5ec25b2db83ad851feb42ebc37dca8ffa345ddaefb82f";
|
|
};
|
|
dose3 = fetchurl {
|
|
url = "https://gforge.inria.fr/frs/download.php/file/34277/dose3-3.3.tar.gz";
|
|
sha256 = "8dc4dae9b1a81bb3a42abb283df785ba3eb00ade29b13875821c69f03e00680e";
|
|
};
|
|
cmdliner = fetchurl {
|
|
url = "https://erratique.ch/software/cmdliner/releases/cmdliner-0.9.7.tbz";
|
|
sha256 = "9c19893cffb5d3c3469ee0cce85e3eeeba17d309b33b9ace31aba06f68f0bf7a";
|
|
};
|
|
uutf = fetchurl {
|
|
url = "https://erratique.ch/software/uutf/releases/uutf-0.9.3.tbz";
|
|
sha256 = "1f364f89b1179e5182a4d3ad8975f57389d45548735d19054845e06a27107877";
|
|
};
|
|
jsonm = fetchurl {
|
|
url = "https://erratique.ch/software/jsonm/releases/jsonm-0.9.1.tbz";
|
|
sha256 = "3fd4dca045d82332da847e65e981d8b504883571d299a3f7e71447d46bc65f73";
|
|
};
|
|
opam = fetchurl {
|
|
url = "https://github.com/ocaml/opam/archive/1.2.2.zip";
|
|
sha256 = "c590ce55ae69ec74f46215cf16a156a02b23c5f3ecb22f23a3ad9ba3d91ddb6e";
|
|
};
|
|
};
|
|
in stdenv.mkDerivation {
|
|
pname = "opam";
|
|
version = "1.2.2";
|
|
|
|
nativeBuildInputs = [ makeWrapper unzip ];
|
|
buildInputs = [ curl ncurses ocaml ];
|
|
|
|
src = srcs.opam;
|
|
|
|
postUnpack = ''
|
|
ln -sv ${srcs.cudf} $sourceRoot/src_ext/${srcs.cudf.name}
|
|
ln -sv ${srcs.extlib} $sourceRoot/src_ext/${srcs.extlib.name}
|
|
ln -sv ${srcs.ocaml_re} $sourceRoot/src_ext/${srcs.ocaml_re.name}
|
|
ln -sv ${srcs.ocamlgraph} $sourceRoot/src_ext/${srcs.ocamlgraph.name}
|
|
ln -sv ${srcs.dose3} $sourceRoot/src_ext/${srcs.dose3.name}
|
|
ln -sv ${srcs.cmdliner} $sourceRoot/src_ext/${srcs.cmdliner.name}
|
|
ln -sv ${srcs.uutf} $sourceRoot/src_ext/${srcs.uutf.name}
|
|
ln -sv ${srcs.jsonm} $sourceRoot/src_ext/${srcs.jsonm.name}
|
|
'';
|
|
|
|
preConfigure = ''
|
|
substituteInPlace ./src_ext/Makefile --replace "%.stamp: %.download" "%.stamp:"
|
|
'';
|
|
|
|
postConfigure = "make lib-ext";
|
|
|
|
# Dirty, but apparently ocp-build requires a TERM
|
|
makeFlags = ["TERM=screen"];
|
|
|
|
# change argv0 to "opam" as a workaround for
|
|
# https://github.com/ocaml/opam/issues/2142
|
|
postInstall = ''
|
|
mv $out/bin/opam $out/bin/.opam-wrapped
|
|
makeWrapper $out/bin/.opam-wrapped $out/bin/opam \
|
|
--argv0 "opam" \
|
|
--suffix PATH : ${aspcud}/bin:${unzip}/bin:${curl}/bin
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A package manager for OCaml";
|
|
homepage = "http://opam.ocamlpro.com/";
|
|
maintainers = [ maintainers.henrytill ];
|
|
platforms = platforms.all;
|
|
license = licenses.lgpl21Plus;
|
|
};
|
|
}
|