summary refs log tree commit diff
path: root/pkgs/development/chez-modules/chez-srfi/default.nix
blob: f055a14884a24570915c5e261e713b0a6550e0c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchgit, chez }:

stdenv.mkDerivation {
  pname = "chez-srfi";
  version = "1.0";

  src = fetchgit {
    url = "https://github.com/fedeinthemix/chez-srfi.git";
    rev = "5770486c2a85d0e3dd4ac62a97918e7c394ea507";
    sha256 = "1s47v7b7w0ycd2g6gyv8qbzmh4jjln5iday8n9l3m996ns8is9zj";
  };

  buildInputs = [ chez ];

  buildPhase = ''
    make PREFIX=$out CHEZ=${chez}/bin/scheme
  '';

  installPhase = ''
    make install PREFIX=$out CHEZ=${chez}/bin/scheme
  '';

  doCheck = false;

  meta = {
    description = "This package provides a collection of SRFI libraries for Chez Scheme";
    homepage = "https://github.com/fedeinthemix/chez-srfi/";
    maintainers = [ stdenv.lib.maintainers.jitwit ];
    license = stdenv.lib.licenses.free;
  };

}