2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, cmdargs, fgl, graphviz, mtl, prolog, prologGraphLib, text
|
2011-09-21 18:46:54 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "prolog-graph";
|
|
|
|
version = "0.1.0.2";
|
|
|
|
sha256 = "1w3wz0sn1qhw286g3arin30jvlldadw976xr7hp0afdvqicl3892";
|
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
cmdargs fgl graphviz mtl prolog prologGraphLib text
|
2011-09-21 18:46:54 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/Erdwolf/prolog";
|
|
|
|
description = "A command line tool to visualize query resolution in Prolog";
|
|
|
|
license = self.stdenv.lib.licenses.publicDomain;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-21 18:46:54 +02:00
|
|
|
};
|
|
|
|
})
|