wordchoice-0.1.0.0: default.nix
{ mkDerivation, base, bytestring, Chart, Chart-diagrams, containers
, lens, optparse-applicative, pandoc, stdenv, system-filepath, text
}:
mkDerivation {
pname = "wordchoice";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base bytestring Chart Chart-diagrams containers lens
optparse-applicative pandoc system-filepath text
];
executableHaskellDepends = [ base ];
testHaskellDepends = [ base ];
homepage = "https://github.com/githubuser/wordchoice#readme";
license = stdenv.lib.licenses.bsd3;
}