diff options
author | Vincent Ambo <tazjin@google.com> | 2019-06-29T13·11+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-06-29T13·11+0100 |
commit | 5c3ac08fcfd5efdc7240c7a4ca99ad1e013e4d45 (patch) | |
tree | 76e0e6cd65fee5ddb057117603a4cf20d30828ef /services/tazblog/tazblog.nix | |
parent | 207c6dac0c27c70429043b94b5ccd10979489230 (diff) |
feat(tazblog): Add Nix build configuration r/3
Diffstat (limited to 'services/tazblog/tazblog.nix')
-rw-r--r-- | services/tazblog/tazblog.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/services/tazblog/tazblog.nix b/services/tazblog/tazblog.nix new file mode 100644 index 000000000000..1b65384fa6b6 --- /dev/null +++ b/services/tazblog/tazblog.nix @@ -0,0 +1,22 @@ +{ 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 = "5.1.3"; + src = ./.; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + acid-state base base64-bytestring blaze-html blaze-markup + bytestring crypto-api cryptohash hamlet happstack-server ixset + markdown mtl network network-uri old-locale rss safecopy + shakespeare text time transformers + ]; + executableHaskellDepends = [ acid-state base network options ]; + description = "Tazjin's Blog"; + license = stdenv.lib.licenses.mit; +} |