Files
nixpkgs/pkgs/development/ocaml-modules/conan/database.nix
2025-09-11 20:18:54 +02:00

29 lines
384 B
Nix

{
buildDunePackage,
conan,
alcotest,
crowbar,
fmt,
rresult,
}:
buildDunePackage {
pname = "conan-database";
inherit (conan) version src;
propagatedBuildInputs = [ conan ];
doCheck = true;
checkInputs = [
alcotest
crowbar
fmt
rresult
];
meta = conan.meta // {
description = "Database of decision trees to recognize MIME type";
};
}