chez-matchable: init at 20160306
This commit is contained in:
parent
93696e3c1f
commit
bbd6003dd7
33
pkgs/development/chez-modules/chez-matchable/default.nix
Normal file
33
pkgs/development/chez-modules/chez-matchable/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user