Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / chez-modules / chez-srfi / default.nix
blob1780a1356c5c63fec5019a43d2fabbeed0c20c1a
1 { stdenv, lib, fetchFromGitHub, chez }:
3 stdenv.mkDerivation {
4   pname = "chez-srfi";
5   version = "1.0";
7   src = fetchFromGitHub {
8     owner = "fedeinthemix";
9     repo = "chez-srfi";
10     rev = "5770486c2a85d0e3dd4ac62a97918e7c394ea507";
11     sha256 = "sha256-8icdkbYmpTpossirFoulUhJY/8Jo+2eeaMwDftbZh+g=";
12   };
14   buildInputs = [ chez ];
16   buildPhase = ''
17     make PREFIX=$out CHEZ=${chez}/bin/scheme
18   '';
20   installPhase = ''
21     make install PREFIX=$out CHEZ=${chez}/bin/scheme
22   '';
24   doCheck = false;
26   meta = with lib; {
27     description = "This package provides a collection of SRFI libraries for Chez Scheme";
28     homepage = "https://github.com/fedeinthemix/chez-srfi/";
29     maintainers = [ maintainers.jitwit ];
30     license = licenses.free;
31   };