about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/guile-modules/guile-reader/default.nix
blob: edc6d73fffccdd9be32ca26fb1d533e7070cd413 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ lib
, stdenv
, fetchurl
, gperf
, guile
, guile-lib
, libffi
, pkg-config
}:

stdenv.mkDerivation rec {
  pname = "guile-reader";
  version = "0.6.3";

  src = fetchurl {
    url = "http://download.savannah.nongnu.org/releases/${pname}/${pname}-${version}.tar.gz";
    hash = "sha256-OMK0ROrbuMDKt42QpE7D6/9CvUEMW4SpEBjO5+tk0rs=";
  };

  nativeBuildInputs = [
    pkg-config
  ];
  buildInputs = [
    gperf
    guile
    guile-lib
    libffi
  ];

  env.GUILE_SITE = "${guile-lib}/${guile.siteDir}";

  configureFlags = [ "--with-guilemoduledir=$(out)/${guile.siteDir}" ];

  meta = with lib; {
    homepage = "https://www.nongnu.org/guile-reader/";
    description = "A simple framework for building readers for GNU Guile";
    longDescription = ''
       Guile-Reader is a simple framework for building readers for GNU Guile.

       The idea is to make it easy to build procedures that extend Guile's read
       procedure. Readers supporting various syntax variants can easily be
       written, possibly by re-using existing "token readers" of a standard
       Scheme readers. For example, it is used to implement Skribilo's
       R5RS-derived document syntax.
    '';
    license = licenses.lgpl3Plus;
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = guile.meta.platforms;
  };
}