summaryrefslogtreecommitdiff
path: root/blog.nix
blob: cbcdcfc80aff77994860a25505a0650939b1d404 (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, 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;
}