This reverts commit65a333600d. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
43 lines
687 B
Nix
43 lines
687 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
|
|
];
|
|
};
|
|
}
|