2013-09-17 09:30:07 +00:00
|
|
|
{ cabal, hashable, nats, text, unorderedContainers }:
|
2011-08-07 22:02:49 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 22:02:49 +00:00
|
|
|
pname = "semigroups";
|
2013-11-27 10:37:43 +00:00
|
|
|
version = "0.12";
|
|
|
|
sha256 = "0wk8hxak4dl8nbdif4f8z9gvr5bqm95inrvrcrb6ryaxichrn432";
|
2013-09-17 09:30:07 +00:00
|
|
|
buildDepends = [ hashable nats text unorderedContainers ];
|
2011-08-07 22:02:49 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/ekmett/semigroups/";
|
2013-09-18 08:24:41 +00:00
|
|
|
description = "Anything that associates";
|
2011-08-07 22:02:49 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 22:02:49 +00:00
|
|
|
};
|
|
|
|
})
|