summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/AspectAG/default.nix
blob: 70d6def01564f9d61ed66f19701bd17f74b42e6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{cabal, HList, mtl}:

cabal.mkDerivation (self : {
  pname = "AspectAG";
  version = "0.2";
  sha256 = "5184ba55bc89d4afd12d1fe5f20e5d62b3b7306e771a7418db805afb70638ce7";
  propagatedBuildInputs = [HList mtl];
  meta = {
    description = "Attribute Grammars in the form of an EDSL";
    license = "LGPL";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})