2012-12-12 11:40:10 +01:00
|
|
|
{ cabal, blazeMarkup, mtl }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "blaze-svg";
|
2014-05-21 16:19:33 +02:00
|
|
|
version = "0.3.4";
|
|
|
|
sha256 = "061011qrpqiyag9549hn0hfikvkrin5wb3cf0zfm9n80cgvzmqd3";
|
2012-12-12 11:40:10 +01:00
|
|
|
buildDepends = [ blazeMarkup mtl ];
|
2014-01-25 19:03:32 +01:00
|
|
|
jailbreak = true;
|
2012-12-12 11:40:10 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/deepakjois/blaze-svg";
|
|
|
|
description = "SVG combinator library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|