mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
20 lines
630 B
Nix
20 lines
630 B
Nix
{ cabal, active, colour, dataDefault, diagramsCore, monoidExtras
|
|
, newtype, NumInstances, semigroups, vectorSpace
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "diagrams-lib";
|
|
version = "0.6.0.3";
|
|
sha256 = "0rc3m2v1bxlm5rz1pi1w4k37sbgmr9qv54rllsqan1kicafjaqw1";
|
|
buildDepends = [
|
|
active colour dataDefault diagramsCore monoidExtras newtype
|
|
NumInstances semigroups vectorSpace
|
|
];
|
|
meta = {
|
|
homepage = "http://projects.haskell.org/diagrams";
|
|
description = "Embedded domain-specific language for declarative graphics";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|