2019-06-29 15:11:56 +02:00
|
|
|
{ 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";
|
2019-08-20 01:17:23 +02:00
|
|
|
version = "6.0.0";
|
2019-06-29 15:11:56 +02:00
|
|
|
src = ./.;
|
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
libraryHaskellDepends = [
|
2019-08-20 01:17:23 +02:00
|
|
|
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
|
2019-06-29 15:11:56 +02:00
|
|
|
];
|
2019-08-20 01:17:23 +02:00
|
|
|
executableHaskellDepends = [ base network options ];
|
2019-06-29 15:11:56 +02:00
|
|
|
description = "Tazjin's Blog";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
}
|