python313Packages.traits: fix build (#373698)
[NixPkgs.git] / pkgs / development / ocaml-modules / magic-mime / default.nix
blob6460a1fb849628b5c247bf5f3231ce230087d4da
2   lib,
3   fetchurl,
4   buildDunePackage,
5 }:
7 buildDunePackage rec {
8   pname = "magic-mime";
9   version = "1.3.1";
11   src = fetchurl {
12     url = "https://github.com/mirage/ocaml-magic-mime/releases/download/v${version}/magic-mime-${version}.tbz";
13     hash = "sha256-4CNNA2Jduh76xY5X44dnLXWl6aYh/0ms/g9gnADxOwg=";
14   };
16   minimalOCamlVersion = "4.03";
18   meta = with lib; {
19     description = "Convert file extensions to MIME types";
20     homepage = "https://github.com/mirage/ocaml-magic-mime";
21     license = licenses.isc;
22     maintainers = with maintainers; [ vbgl ];
23   };