fim: Fix the build by switching back to GCC 9

GCC 10 breaks the build: https://hydra.nixos.org/build/134272249
There are workarounds to fix the build with GCC 10 [0] but since
upstream is inactive it's probably best to deprecate fim soon.

[0]: https://aur.archlinux.org/cgit/aur.git/commit/?h=fim&id=66258387a099da72f7758495fb0e3c93e16068e7
This commit is contained in:
Michael Weiss 2021-01-06 19:01:15 +01:00
parent 4746e1717f
commit b9cbe0f8e7
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, autoconf, automake, pkgconfig
{ gcc9Stdenv, fetchurl, autoconf, automake, pkgconfig, lib
, perl, flex, bison, readline, libexif
, x11Support ? true, SDL
, svgSupport ? true, inkscape
@ -9,7 +9,7 @@
, pngSupport ? true, libpng
}:
stdenv.mkDerivation rec {
gcc9Stdenv.mkDerivation rec {
pname = "fim";
version = "0.6";
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoconf automake pkgconfig ];
buildInputs = with stdenv.lib;
buildInputs = with lib;
[ perl flex bison readline libexif ]
++ optional x11Support SDL
++ optional svgSupport inkscape
@ -35,9 +35,9 @@ stdenv.mkDerivation rec {
++ optional jpegSupport libjpeg
++ optional pngSupport libpng;
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString x11Support "-lSDL";
NIX_CFLAGS_COMPILE = lib.optionalString x11Support "-lSDL";
meta = with stdenv.lib; {
meta = with lib; {
description = "A lightweight, highly customizable and scriptable image viewer";
longDescription = ''
FIM (Fbi IMproved) is a lightweight, console based image viewer that aims