mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 06:33:42 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
40 lines
1.3 KiB
Nix
40 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, pkgconfig
|
|
, gperf, guile, guile-lib, libffi }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "guile-reader";
|
|
version = "0.6.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.savannah.nongnu.org/releases/guile-reader/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-OMK0ROrbuMDKt42QpE7D6/9CvUEMW4SpEBjO5+tk0rs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gperf guile guile-lib libffi ];
|
|
|
|
GUILE_SITE="${guile-lib}/share/guile/site";
|
|
|
|
configureFlags = [ "--with-guilemoduledir=$(out)/share/guile/site" ];
|
|
|
|
meta = with lib; {
|
|
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.
|
|
'';
|
|
homepage = "https://www.nongnu.org/guile-reader/";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
platforms = platforms.gnu;
|
|
};
|
|
}
|