emacsPackages.treemacs: replace python3 program (#364623)
[NixPkgs.git] / pkgs / by-name / gu / guile-lib / package.nix
blobd6d51c9878a8867348d15f4d9681e4392a6ddc55
2   lib,
3   stdenv,
4   fetchurl,
5   autoreconfHook,
6   guile,
7   pkg-config,
8   texinfo,
9 }:
11 stdenv.mkDerivation rec {
12   pname = "guile-lib";
13   version = "0.2.8.1";
15   src = fetchurl {
16     url = "mirror://savannah/${pname}/${pname}-${version}.tar.gz";
17     hash = "sha256-E3TC2Dnmoz0ZDNHavZx/h3U/g4T1W4ZvPhQhVcIrSbE=";
18   };
20   strictDeps = true;
21   nativeBuildInputs = [
22     autoreconfHook
23     guile
24     pkg-config
25   ];
26   buildInputs = [
27     guile
28     texinfo
29   ];
31   postPatch = ''
32     substituteInPlace configure.ac \
33       --replace 'SITEDIR="$datadir/guile-lib"' 'SITEDIR=$datadir/guile/site/$GUILE_EFFECTIVE_VERSION' \
34       --replace 'SITECCACHEDIR="$libdir/guile-lib/guile/$GUILE_EFFECTIVE_VERSION/site-ccache"' 'SITECCACHEDIR="$libdir/guile/$GUILE_EFFECTIVE_VERSION/site-ccache"'
35   '';
37   makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
39   doCheck = !stdenv.hostPlatform.isDarwin;
41   preCheck = ''
42     # Make `libgcc_s.so' visible for `pthread_cancel'.
43     export LD_LIBRARY_PATH=\
44     "$(dirname $(echo ${lib.getLib stdenv.cc.cc}/lib*/libgcc_s.so))''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
45   '';
47   meta = with lib; {
48     homepage = "https://www.nongnu.org/guile-lib/";
49     description = "Collection of useful Guile Scheme modules";
50     longDescription = ''
51       guile-lib is intended as an accumulation place for pure-scheme Guile
52       modules, allowing for people to cooperate integrating their generic Guile
53       modules into a coherent library.  Think "a down-scaled, limited-scope CPAN
54       for Guile".
55     '';
56     license = licenses.gpl3Plus;
57     maintainers = with maintainers; [
58       vyp
59       foo-dogsquared
60     ];
61     platforms = guile.meta.platforms;
62   };