biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / cry / default.nix
blob83a1d269060e3e0332c08c7e7b3e507e5f9e6cad
1 { lib, buildDunePackage, fetchFromGitHub }:
3 buildDunePackage rec {
4   pname = "cry";
5   version = "1.0.3";
7   src = fetchFromGitHub {
8     owner = "savonet";
9     repo = "ocaml-cry";
10     rev = "v${version}";
11     hash = "sha256-ea6f2xTVmYekPmzAKasA9mNG4Voxw2MCkfZ9LB9gwbo=";
12   };
14   postPatch = ''
15     substituteInPlace src/dune --replace-warn bytes ""
16   '';
18   minimalOCamlVersion = "4.12";
20   meta = with lib; {
21     homepage = "https://github.com/savonet/ocaml-cry";
22     description = "OCaml client for the various icecast & shoutcast source protocols";
23     license = licenses.gpl2Plus;
24     maintainers = with maintainers; [ dandellion ];
25   };