idrisPackages.sdl2: 2018-01-19 -> 0.1.1 (#65461)

idrisPackages.sdl2: 2018-01-19 -> 0.1.1
This commit is contained in:
Silvan Mosberger 2019-07-28 01:02:57 +02:00 committed by GitHub
commit b0fd8f4ef2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 8 deletions

View File

@ -5001,6 +5001,15 @@
github = "sternenseemann"; github = "sternenseemann";
name = "Lukas Epple"; name = "Lukas Epple";
}; };
steshaw = {
name = "Steven Shaw";
email = "steven@steshaw.org";
github = "steshaw";
keys = [{
longkeyid = "rsa4096/0x1D9A17DFD23DCB91";
fingerprint = "0AFE 77F7 474D 1596 EE55 7A29 1D9A 17DF D23D CB91";
}];
};
stesie = { stesie = {
email = "stesie@brokenpipe.de"; email = "stesie@brokenpipe.de";
github = "stesie"; github = "stesie";

View File

@ -6,26 +6,33 @@
, SDL2 , SDL2
, SDL2_gfx , SDL2_gfx
}: }:
build-idris-package { build-idris-package rec {
name = "sdl2"; name = "sdl2";
version = "2018-01-19"; version = "0.1.1";
idrisDeps = [ effects ]; idrisDeps = [ effects ];
extraBuildInputs = [ pkgconfig SDL2 SDL2_gfx ]; extraBuildInputs = [
pkgconfig
SDL2
SDL2_gfx
];
prePatch = "patchShebangs .";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "steshaw"; owner = "steshaw";
repo = "idris-sdl2"; repo = "idris-sdl2";
rev = "ebc36a0efb3e8086f2999120e7a8a8ac4952c6f6"; rev = version;
sha256 = "060k0i1pjilrc4pcz7v70hbipaw2crz14yxjlyjlhn6qm03131q0"; sha256 = sha256:1jslnlzyw04dcvcd7xsdjqa7waxzkm5znddv76sv291jc94xhl4a;
}; };
meta = { meta = {
description = "SDL2 binding for Idris"; description = "SDL2 binding for Idris";
homepage = https://github.com/steshaw/idris-sdl2; homepage = https://github.com/steshaw/idris-sdl2;
maintainers = [ lib.maintainers.brainrape ]; maintainers = with lib.maintainers; [
# Can't find file sdl2.o brainrape
broken = true; steshaw
];
}; };
} }