1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/Graphalyze/default.nix
2011-08-09 09:54:50 +00:00

15 lines
444 B
Nix

{cabal, bktrees, fgl, graphviz, pandoc} :
cabal.mkDerivation (self : {
pname = "Graphalyze";
version = "0.11.0.0";
sha256 = "1aplfd0qp7ypr9rh4v4x5g8f4b0d1w0dcgz7hgjm9haqcsv37a79";
propagatedBuildInputs = [ bktrees fgl graphviz pandoc ];
meta = {
description = "Graph-Theoretic Analysis library.";
license = "unknown";
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})