1 { stdenv, lib, fetchFromGitHub, chez }:
3 stdenv.mkDerivation rec {
4 pname = "chez-matchable";
7 src = fetchFromGitHub {
8 owner = "fedeinthemix";
9 repo = "chez-matchable";
11 sha256 = "02qn7x348p23z1x5lwhkyj7i8z6mgwpzpnwr8dyina0yzsdkr71s";
14 buildInputs = [ chez ];
17 make PREFIX=$out CHEZ=${chez}/bin/scheme
21 make install PREFIX=$out CHEZ=${chez}/bin/scheme
27 description = "This is a Library for ChezScheme providing the portable hygenic pattern matcher by Alex Shinn";
28 homepage = "https://github.com/fedeinthemix/chez-matchable/";
29 maintainers = [ maintainers.jitwit ];
30 license = licenses.publicDomain;