Added "regular" library for Haskell.

svn path=/nixpkgs/trunk/; revision=16431
This commit is contained in:
Andres Löh 2009-07-20 13:17:50 +00:00
parent 8c6bef0bb0
commit 7669dca3b9
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,11 @@
{cabal}:
cabal.mkDerivation (self : {
pname = "regular";
version = "0.1";
sha256 = "2f2858a22dd26d93eaa4b5244141d6d146387eac98e0fb15f647123d50525820";
meta = {
description = "Generic programming library for regular datatypes";
};
})

View File

@ -350,6 +350,10 @@ rec {
inherit cabal regexBase;
};
regular = import ../development/libraries/haskell/regular {
inherit cabal;
};
syb = import ../development/libraries/haskell/syb {
inherit cabal;
};