2013-11-26 10:39:55 +00:00
|
|
|
{ cabal, active, colour, dataDefaultClass, diagramsCore, filepath
|
2014-01-27 10:51:32 +00:00
|
|
|
, fingertree, hashable, intervals, lens, MemoTrie, monoidExtras
|
2014-03-11 10:49:10 +00:00
|
|
|
, optparseApplicative, safe, semigroups, tagged, vectorSpace
|
|
|
|
, vectorSpacePoints
|
2012-09-05 12:30:28 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "diagrams-lib";
|
2014-04-11 21:28:27 +01:00
|
|
|
version = "1.1.0.6";
|
|
|
|
sha256 = "125krfaf73k2m73scnjdl0d76acwc6n9vhvvaqxxy1ln57caqh5x";
|
2012-09-05 12:30:28 +01:00
|
|
|
buildDepends = [
|
2013-11-26 10:39:55 +00:00
|
|
|
active colour dataDefaultClass diagramsCore filepath fingertree
|
2014-03-11 10:49:10 +00:00
|
|
|
hashable intervals lens MemoTrie monoidExtras optparseApplicative
|
|
|
|
safe semigroups tagged vectorSpace vectorSpacePoints
|
2012-09-05 12:30:28 +01:00
|
|
|
];
|
2013-09-18 15:58:08 +01:00
|
|
|
jailbreak = true;
|
2012-09-05 12:30:28 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|