tvl-depot/services/tazblog/tazblog.nix
2019-08-20 07:09:16 +01:00

22 lines
746 B
Nix

{ mkDerivation, acid-state, base, base64-bytestring, blaze-html
, blaze-markup, bytestring, cache, crypto-api, cryptohash, hamlet
, happstack-server, markdown, mtl, network, network-uri
, old-locale, options, rss, 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
cache 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;
}