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