chez-matchable: init at 20160306

This commit is contained in:
jitwit 2019-12-11 13:40:50 -05:00 committed by Lassulus
parent 93696e3c1f
commit bbd6003dd7
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ stdenv, fetchFromGitHub, chez }:
stdenv.mkDerivation rec {
pname = "chez-matchable";
version = "20160306";
src = fetchFromGitHub {
owner = "fedeinthemix";
repo = "chez-matchable";
rev = "v${version}";
sha256 = "02qn7x348p23z1x5lwhkyj7i8z6mgwpzpnwr8dyina0yzsdkr71s";
};
buildInputs = [ chez ];
buildPhase = ''
make PREFIX=$out CHEZ=${chez}/bin/scheme
'';
installPhase = ''
make install PREFIX=$out CHEZ=${chez}/bin/scheme
'';
doCheck = false;
meta = {
description = "This is a Library for ChezScheme providing the protable hygenic pattern matcher by Alex Shinn";
homepage = https://github.com/fedeinthemix/chez-matchable/;
maintainers = [ stdenv.lib.maintainers.jitwit ];
license = stdenv.lib.licenses.publicDomain;
};
}

View file

@ -7679,6 +7679,8 @@ in
chez-scmutils = callPackage ../development/chez-modules/chez-scmutils { };
chez-matchable = callPackage ../development/chez-modules/chez-matchable { };
clang = llvmPackages.clang;
clang-manpages = llvmPackages.clang-manpages;