5320792ed7
That way we have all diagrams specific stuff in one directory, which coulde make it easier for code-reuse in the future. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Acked-by: Peter Simons <simons@cryp.to>
19 lines
521 B
Nix
19 lines
521 B
Nix
{ cabal, MemoTrie, newtype, semigroups, vectorSpace
|
|
, vectorSpacePoints
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "diagrams-core";
|
|
version = "0.5.0.1";
|
|
sha256 = "073fk9cxm1kh92alr51dgwps9wxc5w3470axc6q7w91sk5cskpxy";
|
|
buildDepends = [
|
|
MemoTrie newtype semigroups vectorSpace vectorSpacePoints
|
|
];
|
|
meta = {
|
|
homepage = "http://projects.haskell.org/diagrams";
|
|
description = "Core libraries for diagrams EDSL";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|