9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
39 lines
1.3 KiB
Nix
39 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, pkg-config
|
|
, gperf, guile, guile-lib, libffi }:
|
|
|
|
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 = [ pkg-config ];
|
|
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;
|
|
};
|
|
}
|