mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 06:05:13 +00:00
16 lines
447 B
Nix
16 lines
447 B
Nix
{ cabal, dataDefaultClass, lens, vectorSpace, vectorSpacePoints }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "force-layout";
|
|
version = "0.3.0.2";
|
|
sha256 = "0zrvsrqwl0wjv38l6zl1pa09572njdbcfbvimhpp930629zk4yb7";
|
|
buildDepends = [
|
|
dataDefaultClass lens vectorSpace vectorSpacePoints
|
|
];
|
|
meta = {
|
|
description = "Simple force-directed layout";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|