cb28766341
svn path=/nixpkgs/trunk/; revision=32327
19 lines
595 B
Nix
19 lines
595 B
Nix
{ cabal, hashable, syb, unorderedContainers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "uniplate";
|
|
version = "1.6.6";
|
|
sha256 = "1n3535yaw44v0krslnmfxgkfry6kih6sn17544qqynnz21x7dlfs";
|
|
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
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|