summaryrefslogtreecommitdiff
path: root/blog.nix
blob: c1f031f0a031e67c4b10264038dca3cc00172348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ mkDerivation, base, blaze-html, bytestring, containers
, cryptohash, data-default, deepseq, directory, filepath, hakyll
, hex, mtl, pandoc, pandoc-types, process, process-extras
, 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 process-extras regex-tdfa temporary
  ];
  homepage = "https://git.yggdrasil.li/gkleen/pub/dirty-haskell.org";
  license = stdenv.lib.licenses.unfree;
}