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