{ mkDerivation, base, containers, csv, filepath, html, parsec
, stdenv
}:
mkDerivation {
pname = "bunkplan";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base containers csv filepath html parsec
];
description = "Generate a HTML bunkplan from a CSV";
license = stdenv.lib.licenses.agpl3Plus;
}