nixpkgs/pkgs/development/ocaml-modules/twt/default.nix
Aristid Breitkreuz a01a64e5a4 Revert "ocamlPackages.twt: update from 0.93.2 to 0.931"
This reverts commit 684a9e22a15cccbe3f4b3b3632520b4c59e6c877.
2014-10-08 20:44:22 +02:00

31 lines
692 B
Nix

{stdenv, fetchurl, ocaml, findlib }:
stdenv.mkDerivation {
name = "ocaml-twt-0.93.2";
src = fetchurl {
url = https://github.com/mlin/twt/archive/v0.93.2.tar.gz;
sha256 = "aec091fbd1e6c4d252cf9664237418b4bc8c7d6b7a17475589be78365397e768";
};
buildInputs = [ ocaml findlib ];
createFindlibDestdir = true;
configurePhase = ''
mkdir $out/bin
'';
dontBuild = true;
installFlags = "PREFIX=$(out)";
meta = with stdenv.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;
};
}