idrisPackages.sdl: remove

This commit is contained in:
Sigmanificient 2024-05-09 20:02:52 +02:00
parent 5d4c768de0
commit 8a6176aae3
2 changed files with 1 additions and 32 deletions

@ -153,8 +153,7 @@
refined = callPackage ./refined.nix {};
sdl = callPackage ./sdl.nix {};
sdl = throw "'idrisPackages.sdl' has been removed, as it was broken and unmaintained"; # added 2024-05-09
sdl2 = callPackage ./sdl2.nix {};
semidirect = callPackage ./semidirect.nix {};

@ -1,30 +0,0 @@
{ build-idris-package
, fetchFromGitHub
, effects
, lib
, SDL
, SDL_gfx
}:
build-idris-package {
pname = "sdl";
version = "2017-03-24";
idrisDeps = [ effects ];
extraBuildInputs = [ SDL SDL_gfx ];
src = fetchFromGitHub {
owner = "edwinb";
repo = "SDL-idris";
rev = "095ce70da7ea9f163b018b690105edf375f1befe";
sha256 = "0nryssnaqfq2pvz2mbl2kkx6mig310f9dpgrbcx788nxi0qzsig6";
};
meta = {
description = "SDL-idris framework for Idris";
homepage = "https://github.com/edwinb/SDL-idris";
maintainers = [ lib.maintainers.brainrape ];
# Can't find file sdlrun.o
broken = true;
};
}