diff options
author | Vincent Ambo <tazjin@google.com> | 2020-02-09T00·43+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-02-09T00·43+0000 |
commit | 05ab6825b3451687fbaf6f8c987e94e616b6d4ff (patch) | |
tree | d1e8ad284bc89f6f6eb6156121151465fa3e3672 /web/tazblog/shell.nix | |
parent | 9fc9b58301b3e0c538ffb8b7e4e7a7dab9fbc243 (diff) |
chore(web): Delete //web/tazblog r/499
Deleting this code feels strange. This project has been around for a decade, and despite occasionally needing a bunch of tweaks it had aged well and worked fine for a very long time. I've reached a strange point where I don't really feel like using Haskell anymore, and every interaction with this project in recent years has been fighting dependency management tooling for Haskell, or dealing with strange build problems. The simple fact is that the service never really did anything other than render Markdown dynamically, and at this point I can do that much better with //tools/cheddar instead. So, tazblog-hs, it's time to say goodbye. Rest in peace!
Diffstat (limited to 'web/tazblog/shell.nix')
-rw-r--r-- | web/tazblog/shell.nix | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/web/tazblog/shell.nix b/web/tazblog/shell.nix deleted file mode 100644 index ebb891a87458..000000000000 --- a/web/tazblog/shell.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ pkgs ? (import ../../default.nix {}).third_party.nixpkgs }: - -let tazblog = import ./tazblog.nix; - depNames = with builtins; filter ( - p: hasAttr p pkgs.haskellPackages - ) (attrNames (functionArgs tazblog)); - ghc = pkgs.ghc.withPackages(p: map (x: p."${x}") depNames); -in pkgs.stdenv.mkDerivation { - name = "shell"; - buildInputs = [ ghc pkgs.hlint ]; -} |