The timeparsers library requires convertible == 1.0.*

This commit is contained in:
John Wiegley
2014-04-16 13:09:31 -05:00
parent a1af25033a
commit df56712700
3 changed files with 23 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
{ cabal, mtl, text, time }:
cabal.mkDerivation (self: {
pname = "convertible";
version = "1.0.11.1";
sha256 = "1r50a2rpfsx0s7dv8ww5xck33b1mhy73gfilffrbqd4hxjgnxlj6";
isLibrary = true;
isExecutable = true;
buildDepends = [ mtl text time ];
meta = {
homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/convertible";
description = "Typeclasses and instances for converting between types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})