2022-03-30 09:31:56 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, chez }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "chez-srfi";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "1.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fedeinthemix";
|
|
|
|
repo = "chez-srfi";
|
2024-09-19 14:19:46 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-yBhRNfoEt1LOn3/zd/yOWwfErN/qG/tQZnDRqEf8j/0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ chez ];
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
makeFlags = [ "CHEZ=${lib.getExe chez}" "PREFIX=$(out)" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "This package provides a collection of SRFI libraries for Chez Scheme";
|
|
|
|
homepage = "https://github.com/fedeinthemix/chez-srfi/";
|
2021-02-05 17:12:51 +00:00
|
|
|
maintainers = [ maintainers.jitwit ];
|
2024-04-21 15:54:59 +00:00
|
|
|
license = licenses.x11;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|