python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / magic-mime / default.nix
bloba48260ed38d6e88cd998afd0b1aa8d395fc22bd3
1 { lib, fetchurl, buildDunePackage }:
3 buildDunePackage rec {
4   pname = "magic-mime";
5   version = "1.2.0";
7   src = fetchurl {
8     url = "https://github.com/mirage/ocaml-magic-mime/releases/download/v${version}/magic-mime-v${version}.tbz";
9     sha256 = "sha256-8SG2dQD43Zfi/J/V0BxzJeTIS8XAI3RCd5+9b6IGlPU=";
10   };
12   minimalOCamlVersion = "4.03";
13   useDune2 = true;
15   meta = with lib; {
16     description = "Convert file extensions to MIME types";
17     homepage = "https://github.com/mirage/ocaml-magic-mime";
18     license = licenses.isc;
19     maintainers = with maintainers; [ vbgl ];
20   };