depot/pkgs/development/idris-modules/sdl2.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

41 lines
678 B
Nix

{ build-idris-package
, fetchFromGitHub
, effects
, lib
, pkg-config
, SDL2
, SDL2_gfx
}:
build-idris-package rec {
pname = "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
];
};
}