Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / chez-modules / chez-srfi / default.nix
blob1d8579ae106e15ea9a3efb3575e7aac2a79046ce
1 { stdenv, lib, fetchgit, chez }:
3 stdenv.mkDerivation {
4   pname = "chez-srfi";
5   version = "1.0";
7   src = fetchgit {
8     url = "https://github.com/fedeinthemix/chez-srfi.git";
9     rev = "5770486c2a85d0e3dd4ac62a97918e7c394ea507";
10     sha256 = "1s47v7b7w0ycd2g6gyv8qbzmh4jjln5iday8n9l3m996ns8is9zj";
11   };
13   buildInputs = [ chez ];
15   buildPhase = ''
16     make PREFIX=$out CHEZ=${chez}/bin/scheme
17   '';
19   installPhase = ''
20     make install PREFIX=$out CHEZ=${chez}/bin/scheme
21   '';
23   doCheck = false;
25   meta = with lib; {
26     description = "This package provides a collection of SRFI libraries for Chez Scheme";
27     homepage = "https://github.com/fedeinthemix/chez-srfi/";
28     maintainers = [ maintainers.jitwit ];
29     license = licenses.free;
30   };