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