ocamlPackages.base64_2: remove at 2.0.0

This commit is contained in:
Vincent Laporte 2020-06-20 09:27:33 +02:00 committed by Vincent Laporte
parent 7b95c27815
commit bbed026045
2 changed files with 0 additions and 27 deletions

View file

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

View file

@ -42,8 +42,6 @@ let
atdgen = callPackage ../development/ocaml-modules/atdgen { };
base64_2 = callPackage ../development/ocaml-modules/base64/2.0.nix { };
base64 = callPackage ../development/ocaml-modules/base64 { };
bap = callPackage ../development/ocaml-modules/bap {