acatalepsie/acatalepsie.nix

20 lines
600 B
Nix
Raw Normal View History

2020-09-27 19:55:34 +00:00
{ mkDerivation, achille, aeson, base, binary, bytestring
2020-10-07 17:02:37 +00:00
, containers, data-default, directory, feed, filepath, lucid
, optparse-applicative, pandoc, pandoc-types, process, sort, stdenv
, text, time, yaml
2020-09-27 19:55:34 +00:00
}:
mkDerivation {
pname = "site";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
2020-10-07 17:02:37 +00:00
achille aeson base binary bytestring containers data-default
directory feed filepath lucid optparse-applicative pandoc
pandoc-types process sort text time yaml
2020-09-27 19:55:34 +00:00
];
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
}