summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/SVGFonts/default.nix
blob: 509efd61968bf316f22300f424faf0079cb1c94c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, attoparsec, blazeMarkup, blazeSvg, dataDefaultClass
, diagramsLib, parsec, split, text, tuple, vector, vectorSpace, xml
}:

cabal.mkDerivation (self: {
  pname = "SVGFonts";
  version = "1.4.0.2";
  sha256 = "1a1f0jdz36zpj1196zv5qwg35rm4ra0b4z5spr1m3696292nj8ph";
  buildDepends = [
    attoparsec blazeMarkup blazeSvg dataDefaultClass diagramsLib parsec
    split text tuple vector vectorSpace xml
  ];
  meta = {
    description = "Fonts from the SVG-Font format";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})