tvl-depot/services/tazblog/tazblog.nix
Vincent Ambo 11fcf62297 chore(tazblog): Replace BlogDB with stubs for DNS-based storage
Removes acid-state specific code and the former BlogDB module, in its
stead the new BlogStorage module contains stubs for the functions that
will be filled in with DNS-based storage.

This code is unformatted and will not currently serve a working blog.
2019-08-20 00:17:23 +01:00

22 lines
750 B
Nix

{ mkDerivation, acid-state, base, base64-bytestring, blaze-html
, blaze-markup, bytestring, crypto-api, cryptohash, hamlet
, happstack-server, ixset, markdown, mtl, network, network-uri
, old-locale, options, rss, safecopy, shakespeare, stdenv, text
, time, transformers
}:
mkDerivation {
pname = "tazblog";
version = "6.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base base64-bytestring blaze-html blaze-markup bytestring
crypto-api cryptohash hamlet happstack-server markdown mtl
network network-uri old-locale rss shakespeare text time
transformers
];
executableHaskellDepends = [ base network options ];
description = "Tazjin's Blog";
license = stdenv.lib.licenses.mit;
}