2008-08-19 07:54:09 +02:00
|
|
|
args :
|
|
|
|
let
|
|
|
|
lib = args.lib;
|
|
|
|
fetchurl = args.fetchurl;
|
|
|
|
simplyShare = args.simplyShare;
|
|
|
|
|
2009-05-24 12:57:41 +02:00
|
|
|
version = lib.attrByPath ["version"] "2.0.0" args;
|
2008-08-19 07:54:09 +02:00
|
|
|
buildInputs = with args; [ ];
|
|
|
|
in
|
|
|
|
rec {
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://weitz.de/files/cl-ppcre.tar.gz;
|
2009-12-05 23:20:05 +01:00
|
|
|
sha256 = "1hrk051yi1qixy0vdig99cbv0v0p825acli65s08yz99b0pjz7m5";
|
2008-08-19 07:54:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
inherit buildInputs;
|
|
|
|
configureFlags = [];
|
|
|
|
|
|
|
|
/* doConfigure should be specified separately */
|
|
|
|
phaseNames = [(simplyShare "cl-ppcre")];
|
|
|
|
|
|
|
|
name = "cl-ppcre-" + version;
|
|
|
|
meta = {
|
|
|
|
description = "Common Lisp Portable Perl Compatible RegExp library";
|
|
|
|
};
|
|
|
|
}
|