ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / development / ocaml-modules / xmlplaylist / default.nix
bloba9294cf162dfac464904b2c2b279bee29a1c6396
2   lib,
3   buildDunePackage,
4   fetchFromGitHub,
5   dune-configurator,
6   xmlm,
7 }:
9 buildDunePackage rec {
10   pname = "xmlplaylist";
11   version = "0.1.5";
13   useDune2 = true;
15   src = fetchFromGitHub {
16     owner = "savonet";
17     repo = "ocaml-xmlplaylist";
18     rev = "v${version}";
19     sha256 = "1x5lbwkr2ip00x8vyfbl8936yy79j138vx8a16ix7g9p2j5qsfcq";
20   };
22   buildInputs = [ dune-configurator ];
23   propagatedBuildInputs = [ xmlm ];
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   };