mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
3cd8ce3bce
Naive concatenation of $LD_LIBRARY_PATH can result in an empty colon-delimited segment; this tells glibc to load libraries from the current directory, which is definitely wrong, and may be a security vulnerability if the current directory is untrusted. (See #67234, for example.) Fix this throughout the tree. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ stdenv, fetchurl, guile, texinfo, pkgconfig }:
|
|
|
|
assert stdenv ? cc && stdenv.cc.isGNU;
|
|
|
|
let
|
|
name = "guile-lib-${version}";
|
|
version = "0.2.6.1";
|
|
in stdenv.mkDerivation {
|
|
inherit name;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/guile-lib/${name}.tar.gz";
|
|
sha256 = "0aizxdif5dpch9cvs8zz5g8ds5s4xhfnwza2il5ji7fv2h7ks7bd";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ guile texinfo ];
|
|
|
|
doCheck = true;
|
|
|
|
preCheck = ''
|
|
# Make `libgcc_s.so' visible for `pthread_cancel'.
|
|
export LD_LIBRARY_PATH=\
|
|
"$(dirname $(echo ${stdenv.cc.cc.lib}/lib*/libgcc_s.so))''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A collection of useful Guile Scheme modules";
|
|
longDescription = ''
|
|
guile-lib is intended as an accumulation place for pure-scheme Guile
|
|
modules, allowing for people to cooperate integrating their generic Guile
|
|
modules into a coherent library. Think "a down-scaled, limited-scope CPAN
|
|
for Guile".
|
|
'';
|
|
homepage = "https://www.nongnu.org/guile-lib/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ vyp ];
|
|
platforms = platforms.gnu ++ platforms.linux;
|
|
};
|
|
}
|