From a751b1ac82b80e5c466d033b58c5d03729f72555 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sat, 26 Oct 2024 16:30:05 +0100 Subject: [PATCH] fim: unpin from gcc-9 At least on x86_64-linux the build suceeds with a default stdenv on gcc-13 without the changes. --- pkgs/tools/graphics/fim/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/fim/default.nix b/pkgs/tools/graphics/fim/default.nix index c61d5f832d95b..79d3052a84a10 100644 --- a/pkgs/tools/graphics/fim/default.nix +++ b/pkgs/tools/graphics/fim/default.nix @@ -1,4 +1,4 @@ -{ gcc9Stdenv, fetchurl, autoconf, automake, pkg-config, lib +{ stdenv, fetchurl, autoconf, automake, pkg-config, lib , perl, flex, bison, readline, libexif , x11Support ? true, SDL , svgSupport ? true, inkscape @@ -9,7 +9,7 @@ , pngSupport ? true, libpng }: -gcc9Stdenv.mkDerivation rec { +stdenv.mkDerivation rec { pname = "fim"; version = "0.7";