1 { lib, stdenv, fetchFromGitHub, autoreconfHook, SDL, SDL_image }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "08q6xrxsyj6vj0sz59nix9isqz84gw3x9hym63lz6v8fpacvykdq";
14 nativeBuildInputs = [ autoreconfHook ];
16 buildInputs = [ SDL SDL_image ];
18 NIX_CFLAGS_COMPILE="-I${SDL}/include/SDL -I${SDL_image}/include/SDL";
21 homepage = "https://brlcad.org/~erik/";
22 description = "SDL based picture viewer/slideshow";
23 platforms = platforms.unix;
24 license = licenses.gpl3;
25 maintainers = [ maintainers.vrthra ];