summary refs log tree commit diff
path: root/pkgs/development/idris-modules/sdl.nix
blob: 4495e60d6bb6c51c0c9f938b602956f0f195770f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ build-idris-package
, fetchFromGitHub
, effects
, lib
, SDL
, SDL_gfx
}:
build-idris-package  {
  name = "sdl";
  version = "2017-03-24";

  idrisDeps = [ effects ];

  extraBuildInputs = [ SDL SDL_gfx ];

  src = fetchFromGitHub {
    owner = "edwinb";
    repo = "SDL-idris";
    rev = "095ce70da7ea9f163b018b690105edf375f1befe";
    sha256 = "0nryssnaqfq2pvz2mbl2kkx6mig310f9dpgrbcx788nxi0qzsig6";
  };

  meta = {
    description = "SDL-idris framework for Idris";
    homepage = https://github.com/edwinb/SDL-idris;
    maintainers = [ lib.maintainers.brainrape ];
    # Can't find file sdlrun.o
    broken = true;
  };
}