mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
* Add ocamlnet
svn path=/nixpkgs/trunk/; revision=25072
This commit is contained in:
parent
eaf8b73517
commit
f3eb5769ca
43
pkgs/development/ocaml-modules/ocamlnet/default.nix
Normal file
43
pkgs/development/ocaml-modules/ocamlnet/default.nix
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
{stdenv, fetchurl, ncurses, ocaml, findlib, ocaml_pcre, camlzip, openssl, ocaml_ssl}:
|
||||||
|
|
||||||
|
let
|
||||||
|
ocaml_version = (builtins.parseDrvName ocaml.name).version;
|
||||||
|
version = "3.1";
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "ocamlnet-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://download.camlcity.org/download/ocamlnet-${version}.tar.gz";
|
||||||
|
sha256 = "0kdc2540ad84j6haj9jxlwryz9cb8q8kjdr48f2wgvcaii38v9f5";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ncurses ocaml findlib ocaml_pcre camlzip openssl ocaml_ssl];
|
||||||
|
|
||||||
|
dontAddPrefix = true;
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
configureFlagsArray=(
|
||||||
|
-bindir $out/bin
|
||||||
|
-enable-ssl
|
||||||
|
-enable-zip
|
||||||
|
-datadir $out/lib/ocaml/${ocaml_version}/ocamlnet
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
make all
|
||||||
|
make opt
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://projects.camlcity.org/projects/ocamlnet.html;
|
||||||
|
description = "A library implementing Internet protocols (http, cgi, email, etc.) for OCaml";
|
||||||
|
license = "Most Ocamlnet modules are released under the zlib/png license. The HTTP server module Nethttpd is, however, under the GPL.";
|
||||||
|
platforms = ocaml.meta.platforms;
|
||||||
|
maintainers = [
|
||||||
|
stdenv.lib.maintainers.z77z
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
@ -2003,6 +2003,8 @@ let
|
|||||||
|
|
||||||
ocaml_lwt = callPackage ../development/ocaml-modules/lwt { };
|
ocaml_lwt = callPackage ../development/ocaml-modules/lwt { };
|
||||||
|
|
||||||
|
ocamlnet = callPackage ../development/ocaml-modules/ocamlnet { };
|
||||||
|
|
||||||
ocaml_pcre = callPackage ../development/ocaml-modules/pcre {
|
ocaml_pcre = callPackage ../development/ocaml-modules/pcre {
|
||||||
inherit pcre;
|
inherit pcre;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user