2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, mtl, text, time }:
|
2009-06-12 14:39:05 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-06-12 14:39:05 +01:00
|
|
|
pname = "convertible";
|
2012-02-29 17:30:47 +00:00
|
|
|
version = "1.0.11.1";
|
|
|
|
sha256 = "1r50a2rpfsx0s7dv8ww5xck33b1mhy73gfilffrbqd4hxjgnxlj6";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ mtl text time ];
|
2009-06-12 14:39:05 +01:00
|
|
|
meta = {
|
2011-08-10 00:00:20 +01:00
|
|
|
homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/convertible";
|
2009-06-12 14:39:05 +01:00
|
|
|
description = "Typeclasses and instances for converting between types";
|
2011-08-10 00:00:20 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-06-12 14:39:05 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|