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