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