{ mkDerivation, base, blaze-html, bytestring, containers
, cryptohash, data-default, deepseq, directory, filepath, hakyll
, hex, mtl, pandoc, pandoc-types, process, regex-tdfa, stdenv
, temporary
}:
mkDerivation {
pname = "dirty-haskell";
version = "0.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base blaze-html bytestring containers cryptohash data-default
deepseq directory filepath hakyll hex mtl pandoc pandoc-types
process regex-tdfa temporary
];
homepage = "https://git.yggdrasil.li/gkleen/pub/dirty-haskell.org";
license = stdenv.lib.licenses.unfree;
}