Added AspectAG for Haskell.

svn path=/nixpkgs/trunk/; revision=21083
This commit is contained in:
Andres Löh 2010-04-15 06:08:37 +00:00
parent 0ab619066b
commit 49a3e1e46b
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{cabal, HList, mtl}:
cabal.mkDerivation (self : {
pname = "AspectAG";
version = "0.1.5";
sha256 = "4cefc7e3404a723f0a75b29797bd9fe685c2a1b3150826b3ba09ade94565f6ff";
propagatedBuildInputs = [HList mtl];
meta = {
description = "Attribute Grammars in the form of an EDSL";
license = "LGPL";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})

View File

@ -41,6 +41,10 @@ rec {
inherit cabal ansiTerminal;
};
AspectAG = import ../development/libraries/haskell/AspectAG {
inherit cabal HList mtl;
};
benchpress = import ../development/libraries/haskell/benchpress {
inherit cabal;
};