python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / xmlplaylist / default.nix
bloba30172573506e62aa21228459eb818dfe0985b31
1 { lib, buildDunePackage, fetchFromGitHub, dune-configurator, xmlm }:
3 buildDunePackage rec {
4   pname = "xmlplaylist";
5   version = "0.1.5";
7   useDune2 = true;
9   src = fetchFromGitHub {
10     owner = "savonet";
11     repo = "ocaml-xmlplaylist";
12     rev = "v${version}";
13     sha256 = "1x5lbwkr2ip00x8vyfbl8936yy79j138vx8a16ix7g9p2j5qsfcq";
14   };
16   buildInputs = [ dune-configurator ];
17   propagatedBuildInputs = [ xmlm ];
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   };