about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/base64/default.nix
blob: 2633d43c1045c9354701fb1bd7e5aab2e98e361a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, fetchzip, buildDunePackage, alcotest, bos }:

let version = "3.2.0"; in

buildDunePackage {
  pname = "base64";
  inherit version;

  src = fetchzip {
    url = "https://github.com/mirage/ocaml-base64/archive/v${version}.tar.gz";
    sha256 = "1ilw3zj0w6cq7i4pvr8m2kv5l5f2y9aldmv72drlwwns013b1gwy";
  };

  minimumOCamlVersion = "4.03";

  buildInputs = [ alcotest bos ];

  doCheck = true;

  meta = {
    homepage = https://github.com/mirage/ocaml-base64;
    description = "Base64 encoding and decoding in OCaml";
    license = lib.licenses.isc;
    maintainers = with lib.maintainers; [ vbgl ];
  };
}