2014-01-30 07:32:56 +00:00
|
|
|
{ cabal, binary, mtl, RepLib, transformers }:
|
2011-09-09 21:45:04 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "unbound";
|
2014-05-09 23:18:44 +01:00
|
|
|
version = "0.4.3.1";
|
|
|
|
sha256 = "1xkp47y7yg8dl95gf4w3iwddc3yivrhcxj184cfhrx6a9rbsflpz";
|
2014-01-30 07:32:56 +00:00
|
|
|
buildDepends = [ binary mtl RepLib transformers ];
|
2011-09-09 21:45:04 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://code.google.com/p/replib/";
|
|
|
|
description = "Generic support for programming with names and binders";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-09 21:45:04 +01:00
|
|
|
};
|
|
|
|
})
|