22 lines
755 B
Nix
22 lines
755 B
Nix
{ mkDerivation, acid-state, base, base64-bytestring, blaze-html
|
|
, blaze-markup, bytestring, cache, crypto-api, cryptohash, dns, 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 dns 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;
|
|
}
|