Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildDunePackage, fetchFromGitHub }:
2
3buildDunePackage rec {
4 pname = "cry";
5 version = "0.6.7";
6
7 src = fetchFromGitHub {
8 owner = "savonet";
9 repo = "ocaml-cry";
10 rev = "v${version}";
11 sha256 = "sha256-1Omp3LBKGTPVwEBd530H0Djn3xiEjOHLqso6S8yIJSQ=";
12 };
13
14 meta = with lib; {
15 homepage = "https://github.com/savonet/ocaml-cry";
16 description = "OCaml client for the various icecast & shoutcast source protocols";
17 license = licenses.gpl2Plus;
18 maintainers = with maintainers; [ dandellion ];
19 };
20}