]> Git — Sourcephile - sourcephile-web.git/blob - sourcephile_web.nix
init
[sourcephile-web.git] / sourcephile_web.nix
1 { mkDerivation, base, blaze-html, bytestring, containers
2 , data-default-class, directory, filepath, hakyll, hakyll-sass
3 , pandoc, pandoc-types, pretty-terminal, skylighting
4 , skylighting-core, split, stdenv, text, time
5 }:
6 mkDerivation {
7 pname = "sourcephile-web";
8 version = "0.0.0.0";
9 src = ./.;
10 isLibrary = false;
11 isExecutable = true;
12 executableHaskellDepends = [
13 base blaze-html bytestring containers data-default-class directory
14 filepath hakyll hakyll-sass pandoc pandoc-types pretty-terminal
15 skylighting skylighting-core split text time
16 ];
17 homepage = "https://sourcephile.fr";
18 license = stdenv.lib.licenses.gpl3;
19 }