12 stdenv.mkDerivation rec {
13 pname = "guile-reader";
17 url = "http://download.savannah.nongnu.org/releases/${pname}/${pname}-${version}.tar.gz";
18 hash = "sha256-OMK0ROrbuMDKt42QpE7D6/9CvUEMW4SpEBjO5+tk0rs=";
33 GUILE_SITE = "${guile-lib}/${guile.siteDir}";
35 // lib.optionalAttrs stdenv.cc.isClang {
36 NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
39 configureFlags = [ "--with-guilemoduledir=$(out)/${guile.siteDir}" ];
42 homepage = "https://www.nongnu.org/guile-reader/";
43 description = "Simple framework for building readers for GNU Guile";
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.
53 license = licenses.lgpl3Plus;
54 maintainers = with maintainers; [ ];
55 platforms = guile.meta.platforms;