nixpkgs/pkgs/development/chez-modules/chez-matchable/default.nix

34 lines
796 B
Nix
Raw Normal View History

2019-12-11 18:40:50 +00:00
{ 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/";
2019-12-11 18:40:50 +00:00
maintainers = [ stdenv.lib.maintainers.jitwit ];
license = stdenv.lib.licenses.publicDomain;
};
}