3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
545 B
Nix
16 lines
545 B
Nix
{ cabal, hashable, syb, unorderedContainers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "uniplate";
|
|
version = "1.6.10";
|
|
sha256 = "0j0hsvlkml8v9f8iijcgq58qnxnmk7gzxcnl9rxx4fdr9fnaffj3";
|
|
buildDepends = [ hashable syb unorderedContainers ];
|
|
meta = {
|
|
homepage = "http://community.haskell.org/~ndm/uniplate/";
|
|
description = "Help writing simple, concise and fast generic operations";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|