dc4b393ded
svn path=/nixpkgs/trunk/; revision=30272
19 lines
595 B
Nix
19 lines
595 B
Nix
{ cabal, hashable, syb, unorderedContainers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "uniplate";
|
|
version = "1.6.5";
|
|
sha256 = "1g29jbh2clxp87p8qjihgjgi8hdqgzray34bg6hv7whsy053apqs";
|
|
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
|
|
];
|
|
};
|
|
})
|