2011-10-11 09:48:24 -07:00
|
|
|
{ cabal, hashable, syb, unorderedContainers }:
|
2009-04-21 14:48:10 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-21 14:48:10 -07:00
|
|
|
pname = "uniplate";
|
2011-11-06 10:36:42 -08:00
|
|
|
version = "1.6.5";
|
|
|
|
sha256 = "1g29jbh2clxp87p8qjihgjgi8hdqgzray34bg6hv7whsy053apqs";
|
2011-10-11 09:48:24 -07:00
|
|
|
buildDepends = [ hashable syb unorderedContainers ];
|
2009-04-21 14:48:10 -07:00
|
|
|
meta = {
|
2011-08-09 16:00:20 -07:00
|
|
|
homepage = "http://community.haskell.org/~ndm/uniplate/";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "Help writing simple, concise and fast generic operations";
|
2011-08-09 16:00:20 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-04-21 14:48:10 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|