12d2821bf5
With all libcs I'm aware of, libdl is now either empty (Glibc, musl, uclibc, illumos), a symlink to libc or equivalent (Apple), or does not exist (FreeBSD, NetBSD). So explicitly linking libdl now does nothing for the former platforms, and breaks the build for the latter platforms. With this patch I've removed -ldl from all overridden linker flags for all free packages in Nixpkgs. Everything still seems to build.
30 lines
681 B
Nix
30 lines
681 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
|
|
'';
|
|
|
|
NIX_CFLAGS_COMPILE = "-fpermissive";
|
|
|
|
meta = {
|
|
homepage = "http://www.bergo.eng.br/eboard/";
|
|
description = "Chess interface for Unix-like systems";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|