nixpkgs/pkgs/development/libraries/haskell/uniplate/default.nix
Peter Simons 3b0b922884 haskell-uniplate: updated to version 1.6.6
svn path=/nixpkgs/trunk/; revision=32317
2012-02-16 09:05:45 +00:00

19 lines
608 B
Nix

{ cabal, Cabal, hashable, syb, unorderedContainers }:
cabal.mkDerivation (self: {
pname = "uniplate";
version = "1.6.6";
sha256 = "1n3535yaw44v0krslnmfxgkfry6kih6sn17544qqynnz21x7dlfs";
buildDepends = [ Cabal 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
];
};
})