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 = "sha256-UYoT8Kp1FTfiL22ntrFXFcAB1HGVrJ6p9JgvhUKi+Yo=";
14 buildInputs = [ chez ];
16 makeFlags = [ "CHEZ=${lib.getExe chez}" "PREFIX=$(out)" ];
21 description = "This is a Library for ChezScheme providing the portable hygenic pattern matcher by Alex Shinn";
22 homepage = "https://github.com/fedeinthemix/chez-matchable/";
23 maintainers = [ maintainers.jitwit ];
24 license = licenses.publicDomain;