2011-10-11 18:48:24 +02:00
|
|
|
{ cabal, hashable, syb, unorderedContainers }:
|
2009-04-21 23:48:10 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-21 23:48:10 +02:00
|
|
|
pname = "uniplate";
|
2011-11-06 19:36:42 +01:00
|
|
|
version = "1.6.5";
|
|
|
|
sha256 = "1g29jbh2clxp87p8qjihgjgi8hdqgzray34bg6hv7whsy053apqs";
|
2011-10-11 18:48:24 +02:00
|
|
|
buildDepends = [ hashable syb unorderedContainers ];
|
2009-04-21 23:48:10 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://community.haskell.org/~ndm/uniplate/";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Help writing simple, concise and fast generic operations";
|
2011-08-10 01:00:20 +02: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 23:48:10 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|