nixpkgs/pkgs/development/libraries/haskell/uniplate/default.nix
Peter Simons dd4305c67a haskell-uniplate: updated to version 1.6.3
svn path=/nixpkgs/trunk/; revision=29770
2011-10-11 16:48:24 +00:00

19 lines
595 B
Nix

{ cabal, hashable, syb, unorderedContainers }:
cabal.mkDerivation (self: {
pname = "uniplate";
version = "1.6.3";
sha256 = "14p10zhsa9ws0rn2nm0gi25bdyhhs83b6qv8bjyywb02sh15xhkw";
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
];
};
})