nixpkgs/pkgs/games/eboard/default.nix
Artturin f9fdf2d402 treewide: move NIX_CFLAGS_COMPILE to the env attrset
with structuredAttrs lists will be bash arrays which cannot be exported
which will be a issue with some patches and some wrappers like cc-wrapper

this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists
in env cause a eval failure
2023-02-22 21:23:04 +02:00

31 lines
685 B
Nix

{ lib, stdenv, fetchurl, perl, pkg-config, gtk2 }:
stdenv.mkDerivation rec {
pname = "eboard";
version = "1.1.1";
src = fetchurl {
url = "mirror://sourceforge/eboard/eboard-${version}.tar.bz2";
sha256 = "0vm25j1s2zg1lipwjv9qrcm877ikfmk1yh34i8f5l3bwd63115xd";
};
patches = [ ./eboard.patch ];
buildInputs = [ gtk2 ];
nativeBuildInputs = [ perl pkg-config ];
hardeningDisable = [ "format" ];
preConfigure = ''
patchShebangs ./configure
'';
env.NIX_CFLAGS_COMPILE = "-fpermissive";
meta = {
homepage = "http://www.bergo.eng.br/eboard/";
description = "Chess interface for Unix-like systems";
platforms = lib.platforms.linux;
};
}