2012-12-12 11:39:51 +01:00
|
|
|
{ cabal, lens, newtype, vectorSpace, vectorSpacePoints }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "force-layout";
|
2013-12-23 18:32:38 +01:00
|
|
|
version = "0.2.0.1";
|
|
|
|
sha256 = "1fvkfgjwsh0cr6ay4djxc8wg0vqfw2vcq3clqjz0zi8zyyjpv8rx";
|
2012-12-12 11:39:51 +01:00
|
|
|
buildDepends = [ lens newtype vectorSpace vectorSpacePoints ];
|
|
|
|
meta = {
|
|
|
|
description = "Simple force-directed layout";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|