nixpkgs/pkgs/development/idris-modules/sdl2.nix
Steven Shaw 5bb88bbce2
idrisPackages.sdl2: 2018-01-19 -> 0.1.1
Update to latest release which unbreaks the package.
2019-07-28 07:37:52 +10:00

39 lines
648 B
Nix

{ build-idris-package
, fetchFromGitHub
, effects
, lib
, pkgconfig
, SDL2
, SDL2_gfx
}:
build-idris-package rec {
name = "sdl2";
version = "0.1.1";
idrisDeps = [ effects ];
extraBuildInputs = [
pkgconfig
SDL2
SDL2_gfx
];
prePatch = "patchShebangs .";
src = fetchFromGitHub {
owner = "steshaw";
repo = "idris-sdl2";
rev = version;
sha256 = sha256:1jslnlzyw04dcvcd7xsdjqa7waxzkm5znddv76sv291jc94xhl4a;
};
meta = {
description = "SDL2 binding for Idris";
homepage = https://github.com/steshaw/idris-sdl2;
maintainers = with lib.maintainers; [
brainrape
steshaw
];
};
}