nixpkgs/pkgs/development/libraries/haskell/uniplate/default.nix
Peter Simons dc4b393ded haskell-uniplate: updated to version 1.6.5
svn path=/nixpkgs/trunk/; revision=30272
2011-11-06 18:36:42 +00:00

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
];
};
})