ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / development / ocaml-modules / cryptgps / default.nix
blobb69342f19add744acefb89b0cd1ab79ab688dc1a
2   stdenv,
3   lib,
4   fetchurl,
5   ocaml,
6   findlib,
7 }:
9 if lib.versionAtLeast ocaml.version "4.06" then
10   throw "cryptgps is not available for OCaml ${ocaml.version}"
11 else
13   stdenv.mkDerivation {
14     pname = "ocaml-cryptgps";
15     version = "0.2.1";
17     src = fetchurl {
18       url = "http://download.camlcity.org/download/cryptgps-0.2.1.tar.gz";
19       sha256 = "1mp7i42cm9w9grmcsa69m3h1ycpn6a48p43y4xj8rsc12x9nav3s";
20     };
22     nativeBuildInputs = [
23       ocaml
24       findlib
25     ];
27     strictDeps = true;
29     dontConfigure = true; # Skip configure phase
31     createFindlibDestdir = true;
33     meta = {
34       homepage = "http://projects.camlcity.org/projects/cryptgps.html";
35       description = "Cryptographic functions for OCaml";
36       longDescription = ''
37         This library implements the symmetric cryptographic algorithms
38         Blowfish, DES, and 3DES. The algorithms are written in O'Caml,
39         i.e. this is not a binding to some C library, but the implementation
40         itself.
41       '';
42       license = lib.licenses.mit;
43       inherit (ocaml.meta) platforms;
44       maintainers = [
45         lib.maintainers.maggesi
46       ];
47     };
48   }