nixpkgs/pkgs/by-name/ch/chez-mit/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
762 B
Nix
Raw Normal View History

2022-03-15 10:25:39 +00:00
{ stdenv, lib, fetchFromGitHub, chez, chez-srfi }:
2022-03-15 10:25:39 +00:00
stdenv.mkDerivation rec {
pname = "chez-mit";
2024-08-29 08:09:10 +00:00
version = "0.2";
2022-03-15 10:25:39 +00:00
src = fetchFromGitHub {
owner = "fedeinthemix";
repo = "chez-mit";
rev = "v${version}";
2024-08-29 08:09:10 +00:00
sha256 = "sha256-TmoLA0zLETKE+PsrGS5dce9xLQUIKwSNixRSVjbrOlk=";
};
buildInputs = [ chez chez-srfi ];
2024-08-29 08:09:10 +00:00
makeFlags = [
"CHEZ=${lib.getExe chez}"
"PREFIX=$(out)"
"CHEZSCHEMELIBDIRS=${chez-srfi}/lib/csv${lib.versions.majorMinor chez.version}-site"
];
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;
};
}