mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
22 lines
675 B
Nix
22 lines
675 B
Nix
{ cabal, blazeMarkup, blazeSvg, colour, diagramsCore, diagramsLib
|
|
, filepath, hashable, lens, monoidExtras, mtl, split, time
|
|
, vectorSpace
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "diagrams-svg";
|
|
version = "1.0.2.1";
|
|
sha256 = "1qm4vk67knl4bpp84kwm95blshf7slarpl620m8irslsq3yag507";
|
|
buildDepends = [
|
|
blazeMarkup blazeSvg colour diagramsCore diagramsLib filepath
|
|
hashable lens monoidExtras mtl split time vectorSpace
|
|
];
|
|
jailbreak = true;
|
|
meta = {
|
|
homepage = "http://projects.haskell.org/diagrams/";
|
|
description = "SVG backend for diagrams drawing EDSL";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|