nixpkgs/pkgs/development/libraries/haskell/uniplate/default.nix
2013-10-27 19:07:15 +01:00

16 lines
545 B
Nix

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