2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, hashable, syb, unorderedContainers }:
|
2009-04-21 22:48:10 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-21 22:48:10 +01:00
|
|
|
pname = "uniplate";
|
2013-08-17 10:50:38 +01:00
|
|
|
version = "1.6.11";
|
|
|
|
sha256 = "10ppc9hqc0y17r3y4vdajshrp3956dybna7qa5zm0akgl3pbla9j";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ hashable syb unorderedContainers ];
|
2009-04-21 22:48:10 +01:00
|
|
|
meta = {
|
2011-08-10 00:00:20 +01:00
|
|
|
homepage = "http://community.haskell.org/~ndm/uniplate/";
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "Help writing simple, concise and fast generic operations";
|
2011-08-10 00:00:20 +01:00
|
|
|
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 ];
|
2009-04-21 22:48:10 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|