fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{stdenv, fetchurl, ocaml, findlib}:
2
3let
4 ocaml_version = (builtins.parseDrvName ocaml.name).version;
5 version = "0.2.1";
6in
7
8stdenv.mkDerivation {
9 name = "ocaml-cryptgps-${version}";
10
11 src = fetchurl {
12 url = "http://download.camlcity.org/download/cryptgps-0.2.1.tar.gz";
13 sha256 = "1mp7i42cm9w9grmcsa69m3h1ycpn6a48p43y4xj8rsc12x9nav3s";
14 };
15
16 buildInputs = [ocaml findlib];
17
18 configurePhase = "true"; # Skip configure phase
19
20 createFindlibDestdir = true;
21
22 meta = {
23 homepage = http://projects.camlcity.org/projects/cryptgps.html;
24 description = "Cryptographic functions for OCaml";
25 longDescription = ''
26 This library implements the symmetric cryptographic algorithms
27 Blowfish, DES, and 3DES. The algorithms are written in O'Caml,
28 i.e. this is not a binding to some C library, but the implementation
29 itself.
30 '';
31 license = stdenv.lib.licenses.mit;
32 platforms = ocaml.meta.platforms;
33 maintainers = [
34 stdenv.lib.maintainers.z77z
35 ];
36 };
37}