mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 02:24:27 +00:00
24 lines
838 B
Nix
24 lines
838 B
Nix
{ cabal, active, colour, dataDefaultClass, diagramsCore, filepath
|
|
, fingertree, hashable, intervals, lens, MemoTrie, monoidExtras
|
|
, optparseApplicative, safe, semigroups, tagged, vectorSpace
|
|
, vectorSpacePoints
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "diagrams-lib";
|
|
version = "1.1.0.1";
|
|
sha256 = "0zkxkncz8ayvahr57fgq44vgir3yghxs2y1rrp138951fcy2g3a7";
|
|
buildDepends = [
|
|
active colour dataDefaultClass diagramsCore filepath fingertree
|
|
hashable intervals lens MemoTrie monoidExtras optparseApplicative
|
|
safe semigroups tagged vectorSpace vectorSpacePoints
|
|
];
|
|
jailbreak = true;
|
|
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;
|
|
};
|
|
})
|