summary refs log blame commit diff
path: root/pkgs/development/idris-modules/sdl2.nix
blob: 2e06b0368255ab795b9bf4ad65b7d7d1c600e2bb (plain) (tree)
1
2
3
4
5
6
7
8
9

                     

         
            


          
                         
                
                    
 
                          
 
                       
              


                      




                               



                         
                  
                                                                    



                                           
                                                       



                                         

    
{ build-idris-package
, fetchFromGitHub
, effects
, lib
, pkg-config
, SDL2
, SDL2_gfx
}:
build-idris-package rec {
  name = "sdl2";
  version = "0.1.1";

  idrisDeps = [ effects ];

  nativeBuildInputs = [
    pkg-config
  ];

  extraBuildInputs = [
    SDL2
    SDL2_gfx
  ];

  prePatch = "patchShebangs .";

  src = fetchFromGitHub {
    owner = "steshaw";
    repo = "idris-sdl2";
    rev = version;
    sha256 = "1jslnlzyw04dcvcd7xsdjqa7waxzkm5znddv76sv291jc94xhl4a";
  };

  meta = {
    description = "SDL2 binding for Idris";
    homepage = "https://github.com/steshaw/idris-sdl2";
    maintainers = with lib.maintainers; [
      brainrape
      steshaw
    ];
  };
}