18 lines
702 B
Nix
18 lines
702 B
Nix
{ mkDerivation, attoparsec, base, blaze-markup, blaze-svg
|
|
, bytestring, cereal, cereal-vector, containers, data-default-class
|
|
, diagrams-core, diagrams-lib, directory, parsec, split, stdenv
|
|
, text, tuple, vector, xml
|
|
}:
|
|
mkDerivation {
|
|
pname = "SVGFonts";
|
|
version = "1.6.0.3";
|
|
sha256 = "bc8f8863799070c345fdd88c065852c6434af9e802fd0171df2a3dbd37f35887";
|
|
enableSeparateDataOutput = true;
|
|
libraryHaskellDepends = [
|
|
attoparsec base blaze-markup blaze-svg bytestring cereal
|
|
cereal-vector containers data-default-class diagrams-core
|
|
diagrams-lib directory parsec split text tuple vector xml
|
|
];
|
|
description = "Fonts from the SVG-Font format";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|