1{
2 lib,
3 buildDunePackage,
4 fetchFromGitHub,
5 dune-configurator,
6 xmlm,
7}:
8
9buildDunePackage rec {
10 pname = "xmlplaylist";
11 version = "0.1.5";
12
13 useDune2 = true;
14
15 src = fetchFromGitHub {
16 owner = "savonet";
17 repo = "ocaml-xmlplaylist";
18 rev = "v${version}";
19 sha256 = "1x5lbwkr2ip00x8vyfbl8936yy79j138vx8a16ix7g9p2j5qsfcq";
20 };
21
22 buildInputs = [ dune-configurator ];
23 propagatedBuildInputs = [ xmlm ];
24
25 meta = with lib; {
26 homepage = "https://github.com/savonet/ocaml-xmlplaylist";
27 description = "Module to parse various RSS playlist formats";
28 license = licenses.lgpl21Only;
29 maintainers = with maintainers; [ dandellion ];
30 };
31}