python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mad / default.nix
blob79e2fd035f5a4da5f6402682c300df2e8e99e98c
1 { lib, buildDunePackage, fetchFromGitHub, dune-configurator, libmad }:
3 buildDunePackage rec {
4   pname = "mad";
5   version = "0.5.2";
7   src = fetchFromGitHub {
8     owner = "savonet";
9     repo = "ocaml-mad";
10     rev = "v${version}";
11     sha256 = "sha256-iJjANV2M68v3C3db1n9Y8V6yJKuDBDSjtMteamndN7U=";
12   };
14   buildInputs = [ dune-configurator ];
15   propagatedBuildInputs = [ libmad ];
17   meta = with lib; {
18     homepage = "https://github.com/savonet/ocaml-mad";
19     description = "Bindings for the mad library which provides functions for encoding wave audio files into mp3";
20     license = licenses.gpl2Plus;
21     maintainers = with maintainers; [ dandellion ];
22   };