3
0
Fork 0
forked from mirrors/nixpkgs

Adds ocaml-base64

Base64 encoding and decoding in OCaml

Homepage: https://github.com/mirage/ocaml-base64
This commit is contained in:
Vincent Laporte 2015-03-03 11:01:55 +01:00
parent b9c02fe7a3
commit c6d31ad722
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchzip, ocaml, findlib }:
let version = "2.0.0"; in
stdenv.mkDerivation {
name = "ocaml-base64-${version}";
src = fetchzip {
url = "https://github.com/mirage/ocaml-base64/archive/v${version}.tar.gz";
sha256 = "1nv55gwq5vaxmrcz9ja2s165b1p9fhcxszc1l76043gpa56qm4fs";
};
buildInputs = [ ocaml findlib ];
createFindlibDestdir = true;
meta = {
homepage = https://github.com/mirage/ocaml-base64;
platforms = ocaml.meta.platforms;
description = "Base64 encoding and decoding in OCaml";
license = stdenv.lib.licenses.isc;
maintainers = with stdenv.lib.maintainers; [ vbgl ];
};
}

View file

@ -3811,6 +3811,8 @@ let
asn1-combinators = callPackage ../development/ocaml-modules/asn1-combinators { };
base64 = callPackage ../development/ocaml-modules/base64 { };
bolt = callPackage ../development/ocaml-modules/bolt { };
camlidl = callPackage ../development/tools/ocaml/camlidl { };