mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{ 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}";
|
|
} // lib.optionalAttrs stdenv.cc.isClang {
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
|
|
};
|
|
|
|
configureFlags = [ "--with-guilemoduledir=$(out)/${guile.siteDir}" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.nongnu.org/guile-reader/";
|
|
description = "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;
|
|
};
|
|
}
|