nixpkgs/pkgs/development/libraries/haskell/force-layout/default.nix

14 lines
423 B
Nix
Raw Normal View History

2012-12-12 11:39:51 +01:00
{ cabal, lens, newtype, vectorSpace, vectorSpacePoints }:
cabal.mkDerivation (self: {
pname = "force-layout";
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;
};
})