a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
36 lines
790 B
Nix
36 lines
790 B
Nix
{ lib, stdenv, fetchFromGitHub, ocaml, findlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ocaml${ocaml.version}-twt";
|
|
version = "0.94.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mlin";
|
|
repo = "twt";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-xbjLPd7P1KyuC3i6WHLBcdLwd14atcBsd5ER+l97KAk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ ocaml findlib ];
|
|
|
|
strictDeps = true;
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $OCAMLFIND_DESTDIR
|
|
'';
|
|
|
|
dontBuild = true;
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
dontStrip = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://people.csail.mit.edu/mikelin/ocaml+twt/";
|
|
description = "“The Whitespace Thing” for OCaml";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.vbgl ];
|
|
platforms = ocaml.meta.platforms or [ ];
|
|
};
|
|
}
|