2018-03-16 11:40:17 +00:00
|
|
|
{ build-idris-package
|
|
|
|
, fetchFromGitHub
|
|
|
|
, effects
|
|
|
|
, lib
|
|
|
|
, pkgconfig
|
|
|
|
, SDL2
|
|
|
|
, SDL2_gfx
|
|
|
|
}:
|
2019-07-27 22:37:52 +01:00
|
|
|
build-idris-package rec {
|
2018-03-16 11:40:17 +00:00
|
|
|
name = "sdl2";
|
2019-07-27 22:37:52 +01:00
|
|
|
version = "0.1.1";
|
2018-03-16 11:40:17 +00:00
|
|
|
|
2018-07-02 04:18:21 +01:00
|
|
|
idrisDeps = [ effects ];
|
2018-03-16 11:40:17 +00:00
|
|
|
|
2019-07-27 22:37:52 +01:00
|
|
|
extraBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
SDL2
|
|
|
|
SDL2_gfx
|
|
|
|
];
|
|
|
|
|
|
|
|
prePatch = "patchShebangs .";
|
2018-03-16 11:40:17 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "steshaw";
|
|
|
|
repo = "idris-sdl2";
|
2019-07-27 22:37:52 +01:00
|
|
|
rev = version;
|
2020-06-01 09:59:41 +01:00
|
|
|
sha256 = "0hqhg7l6wpkdbzrdjvrbqymmahziri07ba0hvbii7dd2p0h248fv";
|
2018-03-16 11:40:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "SDL2 binding for Idris";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/steshaw/idris-sdl2";
|
2019-07-27 22:37:52 +01:00
|
|
|
maintainers = with lib.maintainers; [
|
|
|
|
brainrape
|
|
|
|
steshaw
|
|
|
|
];
|
2018-03-16 11:40:17 +00:00
|
|
|
};
|
|
|
|
}
|