3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
20 lines
557 B
Nix
20 lines
557 B
Nix
{ cabal, cairo, cmdargs, colour, diagramsCore, diagramsLib
|
|
, filepath, mtl, split, time
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "diagrams-cairo";
|
|
version = "0.6";
|
|
sha256 = "0fxqwkv2cpgpkr80q828rm91ybn7j0dwj1p5ysc3648w28jvhkil";
|
|
buildDepends = [
|
|
cairo cmdargs colour diagramsCore diagramsLib filepath mtl split
|
|
time
|
|
];
|
|
meta = {
|
|
homepage = "http://projects.haskell.org/diagrams";
|
|
description = "Cairo backend for diagrams drawing EDSL";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|