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/default.nix | |
parent | 207c6dac0c27c70429043b94b5ccd10979489230 (diff) |
feat(tazblog): Add Nix build configuration r/3
Diffstat (limited to 'services/tazblog/default.nix')
-rw-r--r-- | services/tazblog/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/services/tazblog/default.nix b/services/tazblog/default.nix new file mode 100644 index 000000000000..3999f2b278cd --- /dev/null +++ b/services/tazblog/default.nix @@ -0,0 +1,7 @@ +# Build configuration for the blog using plain Nix. +# +# tazblog.nix was generated using cabal2nix. + +{ pkgs ? import <nixpkgs> {} }: + +pkgs.haskell.packages.ghc865.callPackage ./tazblog.nix {} |