nixpkgs/pkgs/by-name/ch/chez-matchable/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
695 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, chez }:
2019-12-11 18:40:50 +00:00
stdenv.mkDerivation rec {
pname = "chez-matchable";
2024-08-29 08:29:26 +00:00
version = "0.2";
2019-12-11 18:40:50 +00:00
src = fetchFromGitHub {
owner = "fedeinthemix";
repo = "chez-matchable";
rev = "v${version}";
2024-08-29 08:29:26 +00:00
sha256 = "sha256-UYoT8Kp1FTfiL22ntrFXFcAB1HGVrJ6p9JgvhUKi+Yo=";
2019-12-11 18:40:50 +00:00
};
buildInputs = [ chez ];
2024-08-29 08:29:26 +00:00
makeFlags = [ "CHEZ=${lib.getExe chez}" "PREFIX=$(out)" ];
2019-12-11 18:40:50 +00:00
doCheck = false;
meta = with lib; {
description = "This is a Library for ChezScheme providing the portable hygenic pattern matcher by Alex Shinn";
homepage = "https://github.com/fedeinthemix/chez-matchable/";
maintainers = [ maintainers.jitwit ];
license = licenses.publicDomain;
2019-12-11 18:40:50 +00:00
};
}