fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
28 lines
666 B
Nix
28 lines
666 B
Nix
{ stdenv, lib, fetchFromGitHub, chez, chez-srfi }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "chez-mit";
|
|
version = "0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fedeinthemix";
|
|
repo = "chez-mit";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-YM4/Sj8otuWJCrUBsglVnihxRGI32F6tSbODFM0a8TA=";
|
|
};
|
|
|
|
buildInputs = [ chez chez-srfi ];
|
|
|
|
makeFlags = [ "CHEZ=${lib.getExe chez}" ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "This is a MIT/GNU Scheme compatibility library for Chez Scheme";
|
|
homepage = "https://github.com/fedeinthemix/chez-mit/";
|
|
maintainers = [ maintainers.jitwit ];
|
|
license = licenses.gpl3Plus;
|
|
broken = true;
|
|
};
|
|
|
|
}
|