Files
nixpkgs/pkgs/development/ocaml-modules/cryptgps/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

49 lines
1.1 KiB
Nix

{
stdenv,
lib,
fetchurl,
ocaml,
findlib,
}:
if lib.versionAtLeast ocaml.version "4.06" then
throw "cryptgps is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation {
pname = "ocaml-cryptgps";
version = "0.2.1";
src = fetchurl {
url = "http://download.camlcity.org/download/cryptgps-0.2.1.tar.gz";
sha256 = "1mp7i42cm9w9grmcsa69m3h1ycpn6a48p43y4xj8rsc12x9nav3s";
};
nativeBuildInputs = [
ocaml
findlib
];
strictDeps = true;
dontConfigure = true; # Skip configure phase
createFindlibDestdir = true;
meta = {
homepage = "http://projects.camlcity.org/projects/cryptgps.html";
description = "Cryptographic functions for OCaml";
longDescription = ''
This library implements the symmetric cryptographic algorithms
Blowfish, DES, and 3DES. The algorithms are written in O'Caml,
i.e. this is not a binding to some C library, but the implementation
itself.
'';
license = lib.licenses.mit;
inherit (ocaml.meta) platforms;
maintainers = [
lib.maintainers.maggesi
];
};
}