nixpkgs/pkgs/development/ocaml-modules/http/default.nix
Bjørn Forsman bd01fad0ed Captialize meta.description of all packages
In line with the Nixpkgs manual.

A mechanical change, done with this command:

  find pkgs -name "*.nix" | \
      while read f; do \
          sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \
      done

I manually skipped some:

* Descriptions starting with an abbreviation, a user name or package name
* Frequently generated expressions (haskell-packages.nix)
2016-06-20 13:55:52 +02:00

36 lines
924 B
Nix

{stdenv, fetchurl, ocaml_pcre, ocamlnet, ocaml, findlib, camlp4}:
stdenv.mkDerivation {
name = "ocaml-http-0.1.5";
src = fetchurl {
url = https://forge.ocamlcore.org/frs/download.php/545/ocaml-http-0.1.5.tar.gz;
sha256 = "09q12b0j01iymflssxigsqggbsp8dqh9pfvkm76dv860544mygws";
};
buildInputs = [ocaml findlib camlp4];
propagatedBuildInputs = [ocaml_pcre ocamlnet];
createFindlibDestdir = true;
prePatch = ''
BASH=$(type -tp bash)
echo $BASH
substituteInPlace Makefile --replace "SHELL=/bin/bash" "SHELL=$BASH"
'';
configurePhase = "true"; # Skip configure phase
buildPhase = ''
make all opt
'';
meta = with stdenv.lib; {
homepage = http://ocaml-http.forge.ocamlcore.org/;
platforms = ocaml.meta.platforms or [];
description = "Do it yourself (OCaml) HTTP daemon";
license = licenses.lgpl2;
maintainers = with maintainers; [ roconnor vbgl ];
};
}