python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / tsdl-ttf / default.nix
blob0ff1963fcaf028afd3863d34538c9a242265fbbc
1 { buildDunePackage
2 , dune-configurator
3 , fetchFromGitHub
4 , lib
5 , SDL2
6 , SDL2_ttf
7 , tsdl
8 }:
10 buildDunePackage rec {
11   pname = "tsdl-ttf";
12   version = "0.3.2";
14   src = fetchFromGitHub {
15     owner = "sanette";
16     repo = pname;
17     rev = version;
18     sha256 = "sha256-COBLF9K8thRROJJGeg4wxqrjB3aBa4CGYkf8HdAQ2o0";
19   };
21   buildInputs = [
22     dune-configurator
23   ];
25   propagatedBuildInputs = [
26     SDL2
27     SDL2_ttf
28     tsdl
29   ];
31   meta = with lib; {
32     description = "SDL2_ttf bindings for Ocaml with Tsdl";
33     homepage = "https://github.com/sanette/tsdl-ttf";
34     license = licenses.bsd3;
35     maintainers = with maintainers; [ ];
36   };