nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 40 lines 656 B view raw
1{ 2 buildDunePackage, 3 dune-configurator, 4 fetchFromGitHub, 5 lib, 6 SDL2, 7 SDL2_image, 8 tsdl, 9}: 10 11buildDunePackage rec { 12 pname = "tsdl-image"; 13 version = "0.6"; 14 15 duneVersion = "3"; 16 17 src = fetchFromGitHub { 18 owner = "sanette"; 19 repo = pname; 20 rev = version; 21 hash = "sha256-mgTFwkuFJVwJmHrzHSdNh8v4ehZIcWemK+eLqjglw5o="; 22 }; 23 24 buildInputs = [ 25 dune-configurator 26 ]; 27 28 propagatedBuildInputs = [ 29 SDL2 30 SDL2_image 31 tsdl 32 ]; 33 34 meta = { 35 description = "OCaml SDL2_image bindings to go with Tsdl"; 36 homepage = "https://github.com/sanette/tsdl-image"; 37 license = lib.licenses.bsd3; 38 maintainers = [ ]; 39 }; 40}