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-10-11 18:48:24 +02:00
|
|
|
version = "1.6.3";
|
|
|
|
sha256 = "14p10zhsa9ws0rn2nm0gi25bdyhhs83b6qv8bjyywb02sh15xhkw";
|
|
|
|
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
|
|
|
})
|