forked from mirrors/nixpkgs
ocamlPackages.cry: init at 0.6.5
This commit is contained in:
parent
18de53ca96
commit
174c0a086e
20
pkgs/development/ocaml-modules/cry/default.nix
Normal file
20
pkgs/development/ocaml-modules/cry/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ lib, buildDunePackage, fetchFromGitHub }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "cry";
|
||||
version = "0.6.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "savonet";
|
||||
repo = "ocaml-cry";
|
||||
rev = version;
|
||||
sha256 = "1g4smccj27sv8pb9az5hbzxi99swg3d55mp7j25lz30xyabvksc3";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/savonet/ocaml-cry";
|
||||
description = "OCaml client for the various icecast & shoutcast source protocols";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ dandellion ];
|
||||
};
|
||||
}
|
|
@ -239,6 +239,8 @@ let
|
|||
|
||||
crunch = callPackage ../development/tools/ocaml/crunch { };
|
||||
|
||||
cry = callPackage ../development/ocaml-modules/cry { };
|
||||
|
||||
cryptokit = callPackage ../development/ocaml-modules/cryptokit { };
|
||||
|
||||
csexp = callPackage ../development/ocaml-modules/csexp { };
|
||||
|
|
Loading…
Reference in a new issue