nixpkgs/pkgs/development/libraries/haskell/uniplate/default.nix
Peter Simons f167461d97 haskell-uniplate: updated to version 1.6.2
svn path=/nixpkgs/trunk/; revision=28636
2011-08-16 23:24:12 +00:00

19 lines
535 B
Nix

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