superfile: 1.1.6 -> 1.1.7 (#371308)
[NixPkgs.git] / pkgs / by-name / gu / guile-reader / package.nix
blob1f2dae51f886c1ce2f26144941f5ffbb965e916f
2   lib,
3   stdenv,
4   fetchurl,
5   gperf,
6   guile,
7   guile-lib,
8   libffi,
9   pkg-config,
12 stdenv.mkDerivation rec {
13   pname = "guile-reader";
14   version = "0.6.3";
16   src = fetchurl {
17     url = "http://download.savannah.nongnu.org/releases/${pname}/${pname}-${version}.tar.gz";
18     hash = "sha256-OMK0ROrbuMDKt42QpE7D6/9CvUEMW4SpEBjO5+tk0rs=";
19   };
21   nativeBuildInputs = [
22     pkg-config
23   ];
24   buildInputs = [
25     gperf
26     guile
27     guile-lib
28     libffi
29   ];
31   env =
32     {
33       GUILE_SITE = "${guile-lib}/${guile.siteDir}";
34     }
35     // lib.optionalAttrs stdenv.cc.isClang {
36       NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
37     };
39   configureFlags = [ "--with-guilemoduledir=$(out)/${guile.siteDir}" ];
41   meta = with lib; {
42     homepage = "https://www.nongnu.org/guile-reader/";
43     description = "Simple framework for building readers for GNU Guile";
44     longDescription = ''
45       Guile-Reader is a simple framework for building readers for GNU Guile.
47       The idea is to make it easy to build procedures that extend Guile's read
48       procedure. Readers supporting various syntax variants can easily be
49       written, possibly by re-using existing "token readers" of a standard
50       Scheme readers. For example, it is used to implement Skribilo's
51       R5RS-derived document syntax.
52     '';
53     license = licenses.lgpl3Plus;
54     maintainers = with maintainers; [ ];
55     platforms = guile.meta.platforms;
56   };